Displaying 20 results from an estimated 5000 matches similar to: "Chinese language R email list?"
2008 Dec 11
1
Sorting problem
Sys.setlocale(,"C")
x1 <- as.character(date()) # I use date to record the time, and save
it to sqlite database, to it converted to character
x1_2 <- strptime(x1, "%a %b %d %H:%M:%S %Y")
x2 <- as.character(date())
x2_2 <- strptime(x2, "%a %b %d %H:%M:%S %Y")
X<-c(x1_2,x2_2)
order(X) ## I want to get the permutation other than the sorted vector.
##
2009 Feb 06
1
glm package
Hi all,
can the glm package be used to estimate a logit model to panel data? I am
asking this
because stata has a standard logit model and then an xtlogit for
longitudinal data. Is there something
similar in R?
Thank you
jcm
[[alternative HTML version deleted]]
2009 Feb 18
1
basic inquiry regarding write.csv
i have a loop which looks likes this:
> data.info <- rbind(data.info, cbind(station.id, year, date,
> max.discharge))
+ y <- split(data.info, data.info[station.id])
+ for (i in names(y))
{write.csv(y[[i]], file=paste(i, ".csv", sep=","))}
i am wondering, where the file (which i am about to write in .csv format)
will be saved? i looked at ?write.csv and
2009 Jan 22
2
Frequency and summary statistics table with different variables and categories
Hello helpers,
This is probably quite simple, but I'm stuck.
I want to create a summary statistics table with frequencies and summary
statistics for a large number of variables. The problem here is that (1)
there are two different classes of categories (sex, type of substance abuse
and type of treatent) which overlap, (2) the data for different variables
should be presented in different
2008 Oct 16
3
how to count unique observations by variables
Dear R-helpers,
I have a data frame with 3 variables, each record is a unique combination of
the three variables. I would like to count the number of unique values of v3
in each v1, and save it as a new variable v4 in the same data frame.
e.g.
df1
[v1] [v2] [v3]
[1,] "a" "C" "1"
[2,] "b" "C" "2"
[3,] "c" "B"
2008 Dec 23
3
How do I reload sessions from a non-default directory in OS X?
i use the GUI version of R on OS X. I launch it by double-clicking on the R
icon. The process always starts in my home directory which means that the
only .RData file that is ever read in is the one in my home directory. I
would instead like to have different R sessions saved in different
directories, but I can't figure out how to do this.
A workaround is to use the shell version of R and
2009 Mar 13
2
updating packages?
I am trying to update the packages that I have installed but I get the following warning messages:
package 'tseries' successfully unpacked and MD5 sums checked
Warning: cannot remove prior installation of package 'tseries'
bundle 'forecasting' successfully unpacked and MD5 sums checked
Warning: cannot remove prior installation of package 'forecast'
What does that
2009 Mar 10
1
HAC corrected standard errors
Hi,
I have a simple linear regression for which I want to obtain HAC corrected
standard errors, since I have significant serial/auto correlation in my
residuals, and also potential heteroskedasticity.
Would anyone be able to direct me to the function that implements this in R?
It's a basic question and I'm sure I'm missing something obvious here. I
looked up this post:
2008 May 14
2
basename/dirname produce incorrect results
The incorrect result incurs when the file path contains Chinese character.
It seems that dirname/basename action on unit of byte instead of char, so
the result in the following example is half of what is expected.
> g<-"d:\\$BG!2L4^M-CfJ8(B\\$BG!2L4^M-CfJ8(B.txt"
> dirname(g)
[1] "d:/$BG!2L4^(B"
> basename(g)
[1] "$BG!2L4^M-(B"
--
HUANG Ronggui,
2009 Mar 16
1
errors when install RSQLite
Dear all,
I am trying to install RSQLite package since I want to install "sqldf", and
I used
>> install.packages("RSQLite") first, which gave Error message as below:
make: *** [RS-DBI.o] Error 1
chmod: cannot access `/usr/lib/R/library/RSQLite/libs/*': No such file or
directory
ERROR: compilation failed for package 'RSQLite'
** Removing
2009 Mar 17
2
Multilevel modeling using R
Dear All,
I use R to conduct multilevel modeling. However, I have a problem about the interpretation of random effect. Unlike the variables in fixed effects, the variables in random effects have not shown the p-value, so I don't know whether they are significant or not? I want to obtain this figure to make the decision. Thanks a lot!
Below is the syntax and output of my program:
2006 Jul 12
1
PDF version of Chinese translations of the manual "An Introduction to R"
Dear All,
I distributed the HTML style one year ago (
http://www.biosino.org/pages/newhtm/r/schtml and
http://www.biosino.org/pages/newhtm/r/tchtml). Now I polished it, and
rewrote it with Latex. You can download it from the URL:
http://www.biosino.org/R/R-doc/ (
http://www.biosino.org/R/R-doc/files/R-intro_cn.pdf).
Wish it will be useful for Chinese R users.
Any
2005 Jun 06
2
simplified Chinese and traditional Chinese translation for R manuals
Hi, every one,
I have translated <An Introduction to R > into simplified Chinese and
traditional Chinese. You can browse them from these two URL:
simplified Chinese:
http://www.biosino.org/pages/newhtm/r/schtml/index.html#Top
traditional Chinese: http://www.biosino.org/pages/newhtm/r/tchtml/
I have distributed these document in HTML format. That is because there is
something wrong with
2008 Jun 07
1
Problem of installing Matrix
[wincent at PC-BSD]export MAKE=gmake
[wincent at PC-BSD]sudo R
.....
> install.packages("Matrix")
--- Please select a CRAN mirror for use in this session ---
Loading Tcl/Tk interface ... done
trying URL 'http://bibs.snu.ac.kr/R/src/contrib/Matrix_0.999375-9.tar.gz'
Content type 'application/x-gzip' length 1483674 bytes (1.4 Mb)
opened URL
2008 Dec 12
1
How to mimic select.list using RGtk2/gWidgetsRGtk2?
I want to write a function mimic the function of select.list(), here
is my preliminary version.
select <- function(x,multiple=TRUE,...){
ans<-new.env()
g <- gwindow(title=title,wid=200,heigh=500)
x1<-ggroup(FALSE,con=g)
x2<-gtable(x,multiple=multiple,con=x1,expand=TRUE)
gbutton("OK",con=x1,handler=function(h,...){
value <- svalue(x2)
if (length(value)==0)
2009 Aug 10
5
Example scripts for R Manual
Hi,
I am wondering if some experienced users would help put the
ready-to-run code of the examples in the manuals. It would help new
users learn R faster by putting all the examples in an ready-to-run R
script file. Can somebody help do so sometime and post the code along
with the pdf manuals?
http://cran.r-project.org/manuals.html
Regards,
Peng
2009 Jun 17
2
Urgent - odfWeave produces graphs /images with Read-Error
Dear list,
I have been working on a report with around 60 images in it, and
everything has been fine, until now. I find that the image output that
is produced by odfWeave produces images that are NOT readable by
OpenOffice or NeoOffice. I get empty boxes with Read-Error written in
them. While generating the file using odfWeave, I can see them being
generated on the screen, and they all seem fine.
2011 Aug 23
5
Easier ways to create .Rd files?
R-helpers:
Are there any ways to auto-generate R-friendly (e.g. will pass a
compilation check) .Rd files given a set of .R code? How about GUIs
that help properly format the .Rd files? Thanks! I want a basic set
of .Rd files that I can update as I go, but as with most things my
documentation typically lags behind my coding by a few days.
--j
--
Jonathan A. Greenberg, PhD
Assistant Project
2009 Aug 11
3
How to Import Excel file into R 2.9.0 version
Hi Every one,
I have a problem with Reading Excel file into R 2.9.0 version. In older
versions it is working with "xlsReadWrite" package. But in 2.9.0 version
there is no package like that. so help me out in this aspect.
Thanks in Advance.
--
View this message in context: http://www.nabble.com/How-to-Import-Excel-file-into-R-2.9.0-version-tp24914638p24914638.html
Sent from the R help
2009 Aug 27
19
Best R text editors?
Quick informal poll: what is everyone's favorite text editor for working
with R? I'd like to hear from people who are using editors that have
some level of direct R interface (e.g. Tinn-R, Komodo+SciViews). Thanks!
--j
--
Jonathan A. Greenberg, PhD
Postdoctoral Scholar
Center for Spatial Technologies and Remote Sensing (CSTARS)
University of California, Davis
One Shields Avenue
The