briandk / granovaGG

Bob Pruzek and Jim Helmreich's implementation of Elemental Graphics for Analysis of Variance
Other
15 stars 4 forks source link

granovaGG needs CITATION information #93

Closed briandk closed 13 years ago

briandk commented 13 years ago

see http://cran.r-project.org/doc/manuals/R-exts.html#CITATION-files

rmpruzek commented 13 years ago
citHeader("To cite package 'granovaGG' in publications use:")  

## R >= 2.8.0 passes package metadata to citation(). 
if(!exists("meta") || is.null(meta)) 
     meta <- packageDescription("granovaGG")      
year <- sub(".*(2[[:digit:]]{3})-.*", "\\1", meta$Date)      
vers <- paste("R package version", meta$Version)            
citEntry(entry="Manual",
          title = "Graphics for ANOVA using Grammar of Graphics code",
          author = personList(as.person("Brian A. Danielak"),
                              as.person("Robert M. Pruzek"),
                              as.person("William E. J. Doane"),
                              as.person("James E. Helmreich"),
                              as.person("Jason Bryer"),
                              person("R Development Core Team")),
          year = year,
          note = vers,
          textVersion =  
                  paste("Brian A. Danielak, Robert M. Pruzek, William E. J. Doane, James E. Helmreich, Jason Bryer", 
                  year,  
                  "). granovaGG: Graphical analysis of variance using Grammar of Graphics code.",
                  vers, ".", sep=""))
rmpruzek commented 13 years ago

Again, plz vet this closely, as I used the info from nlme which I tried to model. I have no idea about the meta parts of this. b