Re: [R] Using PrettyR to produce LaTeX output

2008-07-28 Thread jcarmichael
Thank you all for your input! I was able to create my descriptive table as well as a few other things I was having trouble with. Thanks again! J. jcarmichael wrote: > > Hello everyone. I am new to R, so please bear with me. I am trying to > find an easy way to export descriptive statistics

Re: [R] Using PrettyR to produce LaTeX output

2008-07-28 Thread jcarmichael
This is EXACTLY what I needed. I suppose the only issue was that I needed to isolate the numeric output of PrettyR::describe. Thanks very much! Gabor Grothendieck wrote: > > Using the built in BOD data frame: > > library(prettyR) > str(describe(BOD)) # note Numeric component > > BOD.descri

Re: [R] Using PrettyR to produce LaTeX output

2008-07-24 Thread Jim Lemon
On Wed, 2008-07-23 at 12:46 -0700, jcarmichael wrote: > Hello everyone. I am new to R, so please bear with me. I am trying to find > an easy way to export descriptive statistics and other information about my > data frame to a LaTeX format. > > I have found the describe function in PrettyR to be

Re: [R] Using PrettyR to produce LaTeX output

2008-07-23 Thread Gabor Grothendieck
Using the built in BOD data frame: library(prettyR) str(describe(BOD)) # note Numeric component BOD.describe.df <- as.data.frame(describe(BOD)$Numeric) library(xtable) xtable(BOD.describe.df) On Wed, Jul 23, 2008 at 3:46 PM, jcarmichael <[EMAIL PROTECTED]> wrote: > > Hello everyone. I am new

Re: [R] Using PrettyR to produce LaTeX output

2008-07-23 Thread Austin, Matt
p@r-project.org Subject: [R] Using PrettyR to produce LaTeX output Hello everyone. I am new to R, so please bear with me. I am trying to find an easy way to export descriptive statistics and other information about my data frame to a LaTeX format. I have found the describe function in PrettyR to

[R] Using PrettyR to produce LaTeX output

2008-07-23 Thread jcarmichael
Hello everyone. I am new to R, so please bear with me. I am trying to find an easy way to export descriptive statistics and other information about my data frame to a LaTeX format. I have found the describe function in PrettyR to be very helpful in producing results in the exact format I'm look