Re: [R] RGB -> CYMK, with consistent colors

2020-11-29 Thread Derek M Jones
t cyan, as compared to printing the RGB version. -- Derek M. Jones Evidence-based software engineering tel: +44 (0)1252 520667 blog:shape-of-code.coding-guidelines.com __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more,

Re: [R] log y 'axis' of histogram

2010-08-30 Thread Derek M Jones
ch used grap to draw all the graphs www.lunabase.org/~faber/Vault/software/grap/ with the numbers being extracted and processed by various C programs and awk scripts. -- Derek M. Jones tel: +44 (0) 1252 520 667 Knowledge Software Ltd mailto:de...@knosof.co.

Re: [R] log y 'axis' of histogram

2010-08-30 Thread Derek M Jones
;) + scale_y_log() does a good job of highlighting the peaks. It may be useful for your purposes, but that doesn't necessarily make it a meaningful graphic. Doesn't being useful for my purpose make it meaningful, at least for me and I hope my readers? -- Derek M. Jones

Re: [R] log y 'axis' of histogram

2010-08-30 Thread Derek M Jones
of: temp<- hist(x, plot = FALSE) #get histogram data plot(x = temp$mids, y = log(temp$counts), type = "h") HTH, Josh On Sun, Aug 29, 2010 at 6:58 PM, Derek M Jones wrote: All, I have been trying to get calls to hist(...) to be plotted with the y-axis having a log scale. I ha

[R] log y 'axis' of histogram

2010-08-29 Thread Derek M Jones
All, I have been trying to get calls to hist(...) to be plotted with the y-axis having a log scale. I have tried: par(ylog=TRUE) I have also looked at the histogram package. Suggestions welcome. -- Derek M. Jones tel: +44 (0) 1252 520 667 Knowledge Software Ltd