[Dplr-commits] r647 - in pkg/dplR: . R
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Jul 30 23:44:55 CEST 2012
Author: andybunn
Date: 2012-07-30 23:44:55 +0200 (Mon, 30 Jul 2012)
New Revision: 647
Modified:
pkg/dplR/ChangeLog
pkg/dplR/DESCRIPTION
pkg/dplR/R/write.tucson.R
Log:
fixing write.tucson.R so that labels justify left instead of right.
Modified: pkg/dplR/ChangeLog
===================================================================
--- pkg/dplR/ChangeLog 2012-07-05 16:06:38 UTC (rev 646)
+++ pkg/dplR/ChangeLog 2012-07-30 21:44:55 UTC (rev 647)
@@ -1,5 +1,11 @@
* CHANGES IN dplR VERSION 1.5.6
+File: write.tucson.R
+------------------------
+
+- Changed series IDs to justify left instead of right. I'm not sure why
+ they ever wanted to be justified left. Silly. (AGB)
+
File: NAMESPACE
---------------
- Exporting new function common.interval()
Modified: pkg/dplR/DESCRIPTION
===================================================================
--- pkg/dplR/DESCRIPTION 2012-07-05 16:06:38 UTC (rev 646)
+++ pkg/dplR/DESCRIPTION 2012-07-30 21:44:55 UTC (rev 647)
@@ -1,25 +1,25 @@
-Encoding: UTF-8
-Package: dplR
-Type: Package
-Title: Dendrochronology Program Library in R
-Version: 1.5.6
-Date: 2012-07-05
-Authors at R: c(person(c("Andrew", "G."), "Bunn", role = c("aut", "cph",
- "cre", "trl"), email = "andrew.bunn at wwu.edu"), person("Mikko",
- "Korpela", role = c("aut", "cph")), person("Franco", "Biondi",
- role = c("aut", "cph")), person("Filipe", "Campelo", role =
- c("aut", "cph")), person("Pierre", "Mérian", role = c("aut",
- "cph")), person("Fares", "Qeadan", role = c("aut", "cph")),
- person("Christian", "Zang", role = c("aut", "cph")))
-Author: Andrew G. Bunn [aut, cph, cre, trl], Mikko Korpela [aut, cph], Franco Biondi [aut, cph], Filipe Campelo [aut, cph], Pierre Mérian [aut, cph], Fares Qeadan [aut, cph], Christian Zang [aut, cph]
-Maintainer: Andrew G. Bunn <andrew.bunn at wwu.edu>
-Depends: R (>= 2.15.0)
-Imports: graphics, grDevices, grid, stats, utils, digest (>= 0.2.3),
- lattice (>= 0.13-6), stringr (>= 0.4), XML (>= 2.1-0)
-Suggests: foreach, iterators, RUnit (>= 0.4.25)
-Description: This package contains functions for performing tree-ring
- analyses, IO, and graphics.
-LazyData: no
-License: GPL
-URL: http://www.wwu.edu/huxley/treering/dplR.shtml,
- http://R-Forge.R-project.org/projects/dplr/
+Encoding: UTF-8
+Package: dplR
+Type: Package
+Title: Dendrochronology Program Library in R
+Version: 1.5.6
+Date: 2012-07-30
+Authors at R: c(person(c("Andrew", "G."), "Bunn", role = c("aut", "cph",
+ "cre", "trl"), email = "andrew.bunn at wwu.edu"), person("Mikko",
+ "Korpela", role = c("aut", "cph")), person("Franco", "Biondi",
+ role = c("aut", "cph")), person("Filipe", "Campelo", role =
+ c("aut", "cph")), person("Pierre", "Mérian", role = c("aut",
+ "cph")), person("Fares", "Qeadan", role = c("aut", "cph")),
+ person("Christian", "Zang", role = c("aut", "cph")))
+Author: Andrew G. Bunn [aut, cph, cre, trl], Mikko Korpela [aut, cph], Franco Biondi [aut, cph], Filipe Campelo [aut, cph], Pierre Mérian [aut, cph], Fares Qeadan [aut, cph], Christian Zang [aut, cph]
+Maintainer: Andrew G. Bunn <andrew.bunn at wwu.edu>
+Depends: R (>= 2.15.0)
+Imports: graphics, grDevices, grid, stats, utils, digest (>= 0.2.3),
+ lattice (>= 0.13-6), stringr (>= 0.4), XML (>= 2.1-0)
+Suggests: foreach, iterators, RUnit (>= 0.4.25)
+Description: This package contains functions for performing tree-ring
+ analyses, IO, and graphics.
+LazyData: no
+License: GPL
+URL: http://www.wwu.edu/huxley/treering/dplR.shtml,
+ http://R-Forge.R-project.org/projects/dplr/
Modified: pkg/dplR/R/write.tucson.R
===================================================================
--- pkg/dplR/R/write.tucson.R 2012-07-05 16:06:38 UTC (rev 646)
+++ pkg/dplR/R/write.tucson.R 2012-07-30 21:44:55 UTC (rev 647)
@@ -180,7 +180,7 @@
## Pad to name.width
rwl.df.name <- ifelse(rwl.df.width < name.width,
format(rwl.df.name, width=name.width,
- justify="right"),
+ justify="left"),
rwl.df.name)
for (i in seq_len(n.decades)) {
More information about the Dplr-commits
mailing list