Skip to content

Commit

Permalink
version 1.28.3
Browse files Browse the repository at this point in the history
  • Loading branch information
edzer authored and cran-robot committed Mar 21, 2023
1 parent acea32e commit 01a78f7
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
@@ -1,5 +1,5 @@
Package: hexbin
Version: 1.28.2
Version: 1.28.3
Title: Hexagonal Binning Routines
Author: Dan Carr <dcarr@voxel.galaxy.gmu.edu>, ported by Nicholas
Lewin-Koh and Martin Maechler <maechler@stat.math.ethz.ch>,
Expand All @@ -18,6 +18,6 @@ License: GPL-2
VignetteBuilder: knitr
NeedsCompilation: yes
URL: https://github.com/edzer/hexbin
Packaged: 2021-01-08 08:39:28 UTC; edzer
Packaged: 2023-03-21 20:34:52 UTC; edzer
Repository: CRAN
Date/Publication: 2021-01-08 09:40:03 UTC
Date/Publication: 2023-03-21 21:40:05 UTC
16 changes: 8 additions & 8 deletions MD5
@@ -1,6 +1,6 @@
b8c6e7f6b0230cdf61f0976d387c7a44 *ChangeLog
a06cfbbc71f9d054145d069f167410ce *DESCRIPTION
9129a733a21f780d50b1c3bb85da0047 *NAMESPACE
2706f66bcb100c40d64246fa1b0e664d *DESCRIPTION
66405052564fa256843adac8756c3918 *NAMESPACE
98a77d0235bb074f09aa7675358b8650 *R/BTC.R
b8083617bec9ef2a20bf2fb31d1f50cb *R/BTY.R
def8a3ae791d6214f8093069780971a3 *R/HO.R
Expand All @@ -14,23 +14,23 @@ cd88d10aa75a6666b296efff0ac1f355 *R/grid.hexlegend.R
ad4a901fb8fc48deb4f76ad3d797ecd9 *R/hdiffplot.R
598977d1977192382b97ff947dbe2d45 *R/hexPlotMA.R
6c606d9e7d4cb2eb92eb985b922086ba *R/hexViewport.R
7a92115dc09afb29331421e3c4eeddcf *R/hexbin.s4.R
326bf768066c28b33dcba48039c12ab8 *R/hexbin.s4.R
5d66d35fa92d45957684ee3375513e28 *R/hexbinList.R
ae5724baa7c3661621ed0018287fc6ca *R/hexbinplot.R
53e8c6ea014e06b21e56b8e447a0dad5 *R/hexpanel.R
249d47000fdc8b641cf6ed2ee6f640bb *R/hexplom.R
0b7181a5ae4cbc780f46041886fc80e8 *R/hexutil.R
acf4489ea175f01eb1659a420183e155 *R/lattice.R
887f080dcb908bb6b6491acb52cddc68 *R/smoothHexbin.R
6928f90fe8a6af9ed24c7ea7cca7f080 *R/smoothHexbin.R
53e586900ba0c452c12ec7aed3d20295 *TODO
df805907fa76081e53fad956edb86363 *build/vignette.rds
9eafd1cdd0fb3d78a85762281167a0ef *build/vignette.rds
cfa9343134507d8eaf7386167ea1243d *data/NHANES.rda
e857b573460b9eba00bdb571dfccfb23 *inst/doc/hexagon_binning.R
0f5af19e815f37b968733e524435daee *inst/doc/hexagon_binning.Rnw
e5c255b1fd878236f31adc04abe88f6f *inst/doc/hexagon_binning.pdf
31f9a053f08703accc2dffe6ee642be7 *inst/doc/hexagon_binning.pdf
3b3cb098160c79abc4d739397d315ff3 *man/NHANES.Rd
bfc5169b22c653bb5912e9c3e92f3207 *man/colramp.Rd
94a1639600897389f489b6b836362d82 *man/erode.hexbin.Rd
48ab11e80111a249054645e3987a033e *man/erode.hexbin.Rd
47a11326b5056014da626fe8c3c5b8e8 *man/getHMedian.Rd
af748a6a41f4a7c7cb0265b75f645d06 *man/gplot.hexbin.Rd
4f14ff188dcc89ced1434511b0da5dc0 *man/grid.hexagons.Rd
Expand Down Expand Up @@ -65,7 +65,7 @@ febf2f7e1ad56316da2058e260732d7a *man/smooth.hexbin.Rd
470ef863da306fb9d0955b3cdb0b2ce0 *src/hcell.f
f8fb4b9ec5a1dbc174102d40377ce885 *src/herode.f
719cbe239d3f98da12bd7f489ab6c197 *src/hsm.f
9738cce32f70c2d27417252a78d5b14d *src/reg.c
298e9bf5c8100f86622f996e3607bb98 *src/reg.c
ddcf0653ed6863dd0260e1f58349356a *tests/hdiffplot.R
07c2792a31643ea08be36a8133f95ed6 *tests/hdiffplot.Rout.save
efe67770786c28cc2bfceef357376f7a *tests/hray.R
Expand Down
2 changes: 1 addition & 1 deletion NAMESPACE
@@ -1,4 +1,4 @@
useDynLib(hexbin)
useDynLib(hexbin, .registration=TRUE)


import(methods)
Expand Down
4 changes: 2 additions & 2 deletions R/hexbin.s4.R
Expand Up @@ -44,7 +44,7 @@ hexbin <-
c1 <- 2 * floor((xbins *shape)/sqrt(3) + 1.5001)
imax <- trunc((jmax*c1 -1)/jmax + 1)
lmax <- jmax * imax
ans <- .Fortran("hbin",
ans <- .Fortran(`hbin`,
x = as.double(x),
y = as.double(y),
cell = integer(lmax),
Expand Down Expand Up @@ -162,7 +162,7 @@ erode.hexbin <- function(hbin, cdfcut = 0.5)
n <- length(cell)
bdim <- hbin@dimen
L <- bdim[1] * bdim[2]
ans <- .Fortran("herode",
ans <- .Fortran(`herode`,
cell = as.integer(cell),
cnt = as.integer(cnt),
n = n,
Expand Down
2 changes: 1 addition & 1 deletion R/smoothHexbin.R
Expand Up @@ -23,7 +23,7 @@ smooth.hexbin <- function(bin, wts = c(48, 4, 1))
pad <- rep.int(0:0, nmax - n)
cell <- c(nr * ncol + nc, pad)
cnt <- c(cnt, pad)
ans <- .Fortran("hsm",
ans <- .Fortran(`hsm`,
cell = as.integer(cell),
cnt = as.integer(cnt),
n = n,
Expand Down
Binary file modified build/vignette.rds
Binary file not shown.
Binary file modified inst/doc/hexagon_binning.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion man/erode.hexbin.Rd
Expand Up @@ -40,7 +40,7 @@ erode.hexbin(hbin, cdfcut = 0.5)
empty or have a count deficit on each erosion cycle. The erode vector
contain an erosion number for each cell. The value of erode is

6*erosion\_cycle\_ at\_ cell\_ removal - cell\_deficit\_at\_removal
6*erosion_cycle_at_cell_removal - cell_deficit_at_removal

Cells with low values are eroded first. The cell with the highest
erosion number is a candidate bivariate median. A few ties in erode
Expand Down
2 changes: 1 addition & 1 deletion src/reg.c
Expand Up @@ -13,7 +13,7 @@ static const R_FortranMethodDef FortranEntries[] = {
{NULL, NULL, 0}
};

void R_init_myLib(DllInfo *info) {
void R_init_hexbin(DllInfo *info) {
R_registerRoutines(info, NULL, NULL, FortranEntries, NULL);
R_useDynamicSymbols(info, FALSE);
R_forceSymbols(info, TRUE);
Expand Down

0 comments on commit 01a78f7

Please sign in to comment.