Displaying 2 results from an estimated 2 matches for "10e12".
Did you mean:
1012
2001 Jun 26
5
breaks in hist()
I was using the hist() function to create a frequency table of some network
traffic data. The range in values is rather large, from 0 till just under
10e12. Calling hist(x, breaks=c(0,1000,1e6,1e9,1e12),plot=F,freq=T) causes
hist() to return :
$breaks
[1] -1.0000e+05 1.0100e+05 1.1000e+06 1.0001e+09 1.0000e+12
Is this recalculation of the breaks by hist() intended?
Maarten van Gelder.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2011 Jul 05
0
Prettier axis labels when using log (or exp!!) scales in Lattice (follow up)
...formation of data, but
actually what I'm looking for is exactly the reverse (exp).
An example would better show what I'm looking for.
library(latticeExtra)
xyplot(Sepal.Length*10e3 ~ Sepal.Width, iris)
If the figures are higher, the format of the labels also changes
xyplot(Sepal.Length*10e12 ~ Sepal.Width, iris)
The y axis of the above plot is what I'm currently get with my data
I would like the y axis in the form 50^3 .
I would better say I want the y axis labels in the form
expression(50^3).
I know from ?xyplot that the argument scales accept "log",
and "that...