Last active
August 29, 2015 14:12
-
-
Save drammock/39aa4662039e5b5bf0b2 to your computer and use it in GitHub Desktop.
Sample translation from phonR 0.4-2 to 1.0-0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTES:
6:16
bark, you may need to specifyxpd=TRUE
to ensure those values still get plotted.width
,height
,pointsize
,units
,res
if you are plotting direct-to-file (i.e., ifoutput
is something other than"screen"
).single.plot
,titles
,axis.titles
,ignore.hidden
,garnish.col
,grayscale
,vary.colors
,vary.shapes
,vary.lines
. Most of them have been replaced by more standard R graphical arguments likemain
,sub
,xlab
andylab
for the axis and plot titles.vary.colors
etc, have been replaced byvar.col.by
andvar.style.by
, but your plot was all one color anyway so that shouldn't matter in this case.ignore.hidden
andsingle.plot
are removed in favor of base R handling of multiple plots and axis limits, viapar(mfrow(...))
andxlim
/ylim
.