search for: euccn

Displaying 4 results from an estimated 4 matches for "euccn".

Did you mean: eccn
2003 Nov 04
2
4-STABLE b0rked in share/locale/zh_CN.GBK
...zh_CN.GB18030 fixed that -STABLE breakage, but zh_CN.GBK appears still to be missing, which causes 'make installworld' to fail. Can you please fix this as well? install -m 644 -o root -g wheel uk_UA.KOI8-U.out /usr/share/locale/uk_UA.KOI8-U/LC_CTYPE install -m 644 -o root -g wheel zh_CN.eucCN.out /usr/share/locale/zh_CN.eucCN/LC_CTYPE install -m 644 -o root -g wheel zh_CN.GB18030.out /usr/share/locale/zh_CN.GB18030/LC_CTYPE install -m 644 -o root -g wheel zh_CN.GBK.out /usr/share/locale/zh_CN.GBK/LC_CTYPE install: /usr/share/locale/zh_CN.GBK/LC_CTYPE: No such file or directory *** Err...
2008 Jun 07
1
Problem of installing Matrix
...3enyj/downloaded_packages Updating HTML index of packages in '.Library' Warning message: In install.packages("Matrix") : installation of package 'Matrix' had non-zero exit status > > sessionInfo() R version 2.6.1 (2007-11-26) i386-portbld-freebsd7.0 locale: zh_CN.eucCN/zh_CN.eucCN/C/C/C/C attached base packages: [1] stats graphics grDevices utils datasets methods base loaded via a namespace (and not attached): [1] rcompgen_0.1-17 tcltk_2.6.1 tools_2.6.1 > R.version _ platform i386-portbld-freebsd7.0 arch i386 o...
2008 Jul 29
1
[releng_7 tinderbox] failure on sparc64/sparc64
...8-R.out ru_RU.UTF-8.out sk_SK.ISO8859-2.out sk_SK.UTF-8.out sl_SI.ISO8859-2.out sl_SI.UTF-8.out sr_YU.ISO8859-2.out sr_YU.ISO8859-5.out sr_YU.UTF-8.out sv_SE.ISO8859-1.out sv_SE.UTF-8.out tr_TR.ISO8859-9.out tr_TR.UTF-8.out uk_UA.CP1251.out uk_UA.ISO8859-5.out uk_UA.KOI8-U.out uk_UA.UTF-8.out zh_CN.eucCN.out zh_CN.GB18030.out zh_CN.GB2312.out zh_CN.UTF-8.out zh_TW.Big5.out zh_TW.UTF-8.out ===> share/zoneinfo (cleandir) rm -f yearistype ===> sys (cleandir) "Makefile", line 15: Unassociated shell command "sys ufs vm xdr ${ARCHDIR}" make: fatal errors encountered -- cannot co...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.