Skip to content

Releases: kbroman/broman

Version 0.84

18 May 20:23
11e8429
Compare
Choose a tag to compare

Version 0.84, 2024-05-18

  • Allow NAs in runningmean() and runningratio().

  • Add scale argument to time_axis() to allow control over time labels it gives, and format argument for customized labels.

  • Add function timeplot(), which is like grayplot() but with x-axis being date/times.

Version 0.82

05 May 20:58
c16025c
Compare
Choose a tag to compare

Version 0.82, 2024-05-05

  • Small change to documentation for objectsizes() (Mb -> MB)

  • Added function time_axis() for helping set up axis labels for date/times.

Version 0.80

08 Jul 15:23
Compare
Choose a tag to compare

Version 0.80, 2022-07-08

  • Include <limits.h> in a C file, for upcoming change to R.
  • Convert NEWS to NEWS.md

Version 0.76

11 Oct 18:54
Compare
Choose a tag to compare

Version 0.76, 2021-10-11

  • Removed all pushbullet functions. They stopped supporting iOS which makes it useless for me.

  • Added warning to dec2hex() and add to documentation for that and hex2dec(), about maximum allowable values (2^31 - 1).

  • Revised bromanversion() to handle a case like "0.74".

  • Removed dependence on jsonlite and assertthat

Version 0.72-4

05 Feb 15:56
Compare
Choose a tag to compare

Version 0.72-4, 2021-02-04

  • Changed default max_jiggle in dotplot() to 0.45 (rather than NULL). Similarly changed default for maxvalue in jiggle() to 0.45.
  • Fixed typo in help file for excel_fig().

Version 0.71-6

24 Nov 17:19
Compare
Choose a tag to compare
  • Changed the default "jiggle" method in jiggle() and dotplot() to be "random", as it seems to work better than the deterministic approach ("fixed").

  • Fixed problem in ciplot() to avoid warnings about some graphics parameters.

  • grayplot() now can take mgp graphics argument.

  • Added argument maxvalue to jiggle(), and max_jiggle to dotplot(), to better control the horizontal jiggling of points when there is a lot of data. (Fixes Issue #8)

  • Make it so you can adjust the vertical lines in dotplot() by including vlines.lwd and/or vlines.col. (Fixes Issue #7)

  • Make it so you can use v_over_h in dotplot()

  • Fixed potential problem in documentation, since plot() has moved from the graphics package to base.

Version 0.70-4

24 Nov 16:15
Compare
Choose a tag to compare

Released to CRAN on 2020-05-21

  • Added an option to include grid lines in triplot(), and a separate function trigrid() that does the work and may be called separately.

  • Added twocolorpal() for a color palette that goes from one color (say blue) to another (say red) through a third (say white). That is, blue to white to red.

  • In vec2string(), add conjunction argument, to allow a different combining word than "and".

  • In ciplot(), allow argument main in ... to be passed to grayplot() and so on to plot().

version 0.69-5

11 Apr 18:06
Compare
Choose a tag to compare

Version 0.69-5, 2019-04-11:

Added function ciplot() for plotting a set of confidence intervals.

Added operators %nin%, %win%, and %wnin%.
a %nin% b is like !(a %in% b)
a %win% b is like a[a %in% b]
a %wnin% b is like a[a %nin% b]

Added function spell_out() for spelling out numbers provided they are
smallish integers. Goes with the datasets numbers and Numbers.

Added function revgray() that's like revrainbow() but white/black.

In dotplot(), make "Group" the default axis label whether rotated or
not. (Was when rotate=TRUE, but not when rotate=FALSE.)

Use Markdown throughout documentation