Re: [R] Installing a tar.gz file

2016-03-06 Thread Uwe Ligges
On 06.03.2016 17:49, sowmya s wrote: Hi: I am trying to install a tar.gz file and I get the error message, Warning in install.packages : installation of package ‘/Users/subraman/Documents/BCA_Data/TDL_Data/tdllicor_0.1-21.tar.gz’ had non-zero exit status We need at least the full output

Re: [R] stargazer summary statistics by group

2016-03-06 Thread sbihorel
Thanks for the suggestions. I will look into these packages. On 3/6/2016 9:08 PM, Mitchell Maltenfort wrote: https://cran.r-project.org/web/packages/tableone/index.html might help On Sunday, March 6, 2016, Jeff Newmiller > wrote:

Re: [R] ACF values with confidence limits + Plot Extaction

2016-03-06 Thread Jean-Claude Arbaut
a <- as.ts(rnorm(20)) png("acf.png") a.acf <- acf(a) dev.off() # to see what is available names(a.acf) unclass(a.acf) 2016-03-06 20:06 GMT+01:00 Preetam Pal : > Thanks, Michael. Appreciate it. > But suppose I go for the plot, how to extract it from R ... say, I want to >

[R] Installing a tar.gz file

2016-03-06 Thread sowmya s
Hi: I am trying to install a tar.gz file and I get the error message, Warning in install.packages : installation of package ‘/Users/subraman/Documents/BCA_Data/TDL_Data/tdllicor_0.1-21.tar.gz’ had non-zero exit status I have tried to gunzip the file and use the .tar file to uninstall and that

Re: [R] stargazer summary statistics by group

2016-03-06 Thread Mitchell Maltenfort
https://cran.r-project.org/web/packages/tableone/index.html might help On Sunday, March 6, 2016, Jeff Newmiller wrote: > Maybe what you really want is the tables package. > -- > Sent from my phone. Please excuse my brevity. > > On March 6, 2016 4:45:58 PM PST, sbihorel

Re: [R] stargazer summary statistics by group

2016-03-06 Thread Jeff Newmiller
Maybe what you really want is the tables package. -- Sent from my phone. Please excuse my brevity. On March 6, 2016 4:45:58 PM PST, sbihorel wrote: >Hi Boris, > >Sorry, but not really. The example that comes closest is "Flip the >table >axes" but this is

Re: [R] stargazer summary statistics by group

2016-03-06 Thread sbihorel
Hi Boris, Sorry, but not really. The example that comes closest is "Flip the table axes" but this is not right either. In the design that I need, the year, month, day, etc... variables would each get a block of rows with statistics (mean, sd, median, min, max) provided for each level of

Re: [R] ACF values with confidence limits + Plot Extaction

2016-03-06 Thread Bert Gunter
My word! Did you try ?png? More to the point, any good R tutorial should provide such info. Pls make some reasonable efforts on your own before posting here. Cheers, Bert On Sunday, March 6, 2016, Preetam Pal wrote: > Thanks, Michael. Appreciate it. > But suppose

Re: [R] package FD

2016-03-06 Thread Jim Lemon
The values in a$x do look numeric. What do you get from: class(a$x) If the result is "factor", as it was for your ft$trait3 variable (and I hope that a$x is the same variable with a different name), then at least one of those values must have been read in as non-numeric. The possible reasons for

Re: [R] stargazer summary statistics by group

2016-03-06 Thread Boris Steipe
Does this entry on the Stargazer Cheatsheet come close enough to what you want? http://jakeruss.com/cheatsheets/stargazer.html#the-default-summary-statistics-table B. On Mar 6, 2016, at 3:34 PM, sbihorel wrote: > Hi, > > I saw a post on this topic on

[R] stargazer summary statistics by group

2016-03-06 Thread sbihorel
Hi, I saw a post on this topic on stackoverflow a while ago. It does not seem to have got any reply... Just trying my luck here. Is there any way to use stargazer to create a table of descriptive statistics by group such as the one below? Thanks

Re: [R] ACF values with confidence limits + Plot Extaction

2016-03-06 Thread Preetam Pal
Thank you very much,Jean-Claude and Michael. 1> @Michael, your suggestion "plot = FALSE" only returns the estimated ACF values, not the confidence limits at different lags. May be I am missing something here.Do you know any way around for this? 2>@Jean-Claude, got it, thanks. Regards, Preetam

Re: [R] ACF values with confidence limits + Plot Extaction

2016-03-06 Thread Preetam Pal
Thanks, Michael. Appreciate it. But suppose I go for the plot, how to extract it from R ... say, I want to save it as a .png file. Regards, Preetam On Sun, Mar 6, 2016 at 3:39 PM, Michael Dewey wrote: > According to the documentation acf returns what you want. It also

Re: [R] package FD

2016-03-06 Thread Jeff Newmiller
That code doesn't show what a$x IS, just what comes out after you force things. The fact that you felt compelled to apply those functions just makes it seem more likely that Jim is onto something. The output of str( a$x ) would show what kind of data it is, and dput( a$x ) would let us put

Re: [R] package FD

2016-03-06 Thread Fabio Monteiro
Hey Jim they are all numeric as you can see as.numeric(as.character(a$x)) [1] 20.0 50.0 7.9 25.0 20.0 20.0 15.0 30.0 48.0 75.0 75.0 25.0 300.0 [14] 103.0 20.0 45.0 15.0 20.0 50.0 6.0 18.0 59.0 70.0 80.0 100.0 40.0 [27] 15.0 30.0 40.0 60.0 9.0 11.0 27.5 75.0

Re: [R-es] usar R a traves de la web

2016-03-06 Thread eric
Hola Jesus, muchas gracias, esta opcion se ve bastante bien, aunque no encuentro un modo de subir mis archivos de datos, pero debe poderse, no ? Muchas gracias, Eric. On 03/05/2016 09:03 AM, Jesús Para Fernández wrote: Buscas algo asi? http://www.r-fiddle.org/#/ > From:

Re: [R] ACF values with confidence limits + Plot Extaction

2016-03-06 Thread Michael Dewey
According to the documentation acf returns what you want. It also says that it returns it invisibly if plot = TRUE which I imagine is what you are doing. So try res <- acf(insert_parameters_here, plot = FALSE) and then look at res On 06/03/2016 07:40, Preetam Pal wrote: Hi R-users, I