Skip to content

Commit

Permalink
version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jtalbot authored and gaborcsardi committed Aug 22, 2014
1 parent 7f31557 commit 47dc9fd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
14 changes: 7 additions & 7 deletions DESCRIPTION
@@ -1,18 +1,18 @@
Package: labeling
Type: Package
Title: Axis Labeling
Version: 0.2
Date: 2013-06-19
Version: 0.3
Date: 2014-08-22
Author: Justin Talbot
Maintainer: Justin Talbot <justintalbot@gmail.com>
Description: Provides a range of axis labeling algorithms
License: MIT | Unlimited
License: MIT + file LICENSE | Unlimited
LazyLoad: no
Collate: 'labeling.R'
Repository: CRAN
Repository/R-Forge/Project: labeling
Repository/R-Forge/Revision: 11
Repository/R-Forge/DateTimeStamp: 2013-06-19 22:32:14
Date/Publication: 2013-06-20 21:19:14
Packaged: 2013-06-20 02:35:20 UTC; rforge
Repository/R-Forge/Revision: 16
Repository/R-Forge/DateTimeStamp: 2014-08-23 05:53:23
Date/Publication: 2014-08-23 14:57:53
Packaged: 2014-08-23 06:15:07 UTC; rforge
NeedsCompilation: no
2 changes: 2 additions & 0 deletions LICENSE
@@ -0,0 +1,2 @@
YEAR: 2014
COPYRIGHT HOLDER: Justin Talbot
5 changes: 3 additions & 2 deletions MD5
@@ -1,6 +1,7 @@
94fbc12f8532740cc1b4995e24dd4334 *DESCRIPTION
68097fdc01419f5f056589c583bb5ae4 *DESCRIPTION
df40359f3d9f65883b4656ea256336a2 *LICENSE
cd3e85cc98c3ec29ab5b7643d3fc7f06 *NAMESPACE
930b841432768078bce2c79a79bae3cb *R/labeling.R
8763db4b3a090510da6dcc85e69cd6c3 *R/labeling.R
ae9878d2bf2b36dcd46519d03b20ecc6 *man/extended.Rd
5547b0741ac06a61199e7bf92a4f18f5 *man/extended.figures.Rd
a746fc58521fbf463fa0971baff1a08c *man/gnuplot.Rd
Expand Down
4 changes: 2 additions & 2 deletions R/labeling.R
Expand Up @@ -722,8 +722,8 @@ gnuplot <- function(dmin, dmax, m)
t <- ceiling(norm_range)

d <- t*power
graphmin <- floor(min/d) * d
graphmax <- ceiling(max/d) * d
graphmin <- floor(dmin/d) * d
graphmax <- ceiling(dmax/d) * d

seq(from=graphmin, to=graphmax, by=d)
}
Expand Down

0 comments on commit 47dc9fd

Please sign in to comment.