Re: [R] r crossed nested random effects lme4

2018-06-27 Thread Bert Gunter
Generally speaking, purely statistical issues are off topic on this forum, which is about programming in the R language. More to the point, the r-sig-mixed-models forum is concerned with questions about mixed effects models, so you should post there. Cheers, Bert Bert Gunter "The trouble with h

[R] r crossed nested random effects lme4

2018-06-27 Thread audusseau jean via R-help
I am new to this forum. I try to find the appropriate model for the following data set with lme4: Each individual subject goes through 3 conditions ("Group", within-subject factor). These 3 conditions include 9 items (3 items in each condition, but the items differ in each condition). Score (4

Re: [R] Adding lines to the page

2018-06-27 Thread Richard M. Heiberger
See if the microplot package provides what you need. The package help file and the vignette will get you started. Microplot works with Hmisc::latex or with MS Word into either Word or HTML. On Wed, Jun 27, 2018 at 19:04 Stats Student wrote: > Thanks, Jeff. The Task View page was very informative

Re: [R] Adding lines to the page

2018-06-27 Thread Bert Gunter
"Considering that there are ways to add text on a page through textGrobs.." ... and the linesGrob() function would do the same for lines, no? Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Bre

Re: [R] How long can a csv file label be?

2018-06-27 Thread Nick Wray via R-help
Thanks Jim > On 27 June 2018 at 23:48 Jim Lemon wrote: > > > Hi Nick, > You are probably using Windows, for which the maximum path length is > claimed to be 260 characters. The most common alternative, Linux, has > a maximum filename length of 255 and a maximum path length of 4096. If > you are s

Re: [R] Adding lines to the page

2018-06-27 Thread Stats Student
Thanks, Jeff. The Task View page was very informative. To answer your question, I'm using ggplot to generate my plots and grid/gridExtra/gtable to place those plots on a page. Considering that there are ways to add text on a page through textGrobs, independent of the plots, I was wondering if

Re: [R] How long can a csv file label be?

2018-06-27 Thread Jim Lemon
Hi Nick, You are probably using Windows, for which the maximum path length is claimed to be 260 characters. The most common alternative, Linux, has a maximum filename length of 255 and a maximum path length of 4096. If you are simply writing a file to the current path, it won't make much difference

Re: [R] How long can a csv file label be?

2018-06-27 Thread Jeff Newmiller
This is operating-system-dependent. Check the documentation for your operating system (or the file subsystem you are using, since some OSes support multiple filesystems). Knowing this fact can make Googling more effective as well. On June 27, 2018 3:33:39 PM PDT, Nick Wray via R-help wrote: >H

[R] How long can a csv file label be?

2018-06-27 Thread Nick Wray via R-help
Hi For various reasons too dull to go into I have been trying to write csv files from R with very long filenames. However R doesn't seem to like my doing this, but it is not clear to me what the maximum filename size is, and I can't find the info on the net. I believe that the maximum pathname

Re: [R] Adding lines to the page

2018-06-27 Thread Jeff Newmiller
That would depend how you are generating the page... plots alone don't really have such options. If you don't know what this means then I suggest you read the Reproducible Research Task View [1]. knitr in conjunction with LaTeX (Rnw files) is very powerful, but there are many other tools as well

[R] Adding lines to the page

2018-06-27 Thread Stats Student
Hi, I'm looking for a way to add lines to a report. To be clear, I don't want to add lines to any specific plot, but instead to add line(s) to the page itself - e.g. add a line to the footer area, above the actual footer text. Any thoughts on how to do this? Many thanks. __