Displaying 3 results from an estimated 3 matches for "mytick".
Did you mean:
myticks
2007 Aug 12
1
How to control the number format on plot axes ?
...f my e-mail. I know that some
threads from the archives have already addressed this question but they
did not really give a clear solution.
Here is a series of short codes that will illustrate the problem:
# First
a<-1:10
plot(x=a,y=a,log="y",type="p")
# Second
a<-1:10
myTicks<-c(1,2,5,10)
plot(x=a,y=a,log="y",type="p",yaxt="n")
axis(side=2,at=myTicks)
# Third
a<-1:10
myTicks<-c(0.1,1,2,5,10)
plot(x=a,y=a,log="y",type="p",yaxt="n")
axis(side=2,at=myTicks)
# Forth
a<-0.1:10
plot(x=a,y=a,log="y...
2003 Mar 17
1
postscript and ps.option metrics
...10,20,30,40,50,60,70,80,90,
100,200,300,400,500,600,700,800,900,
1000,2000,3000,4000,5000,6000,7000,8000,9000,
10000,20000,30000,40000,50000,60000,70000,80000,90000,
100000,200000,300000,400000,500000,600000,700000,800000,900000,1000000)
myticks <- c(1,10,100,1000,10000,100000,1000000)
mylabs <- c("1","10","100","1,000","10,000","100,000", "1,000,000")
mnyticks <- c(5,50,500,5000,50000,500000)
mnylabs <- c("5","50","500","...
2024 Sep 05
1
lattice log scale labels.
Do the "at" and "labels" components of the "scales" list argument to xyplot
not do what you want?
Cheers,
Bert
On Thu, Sep 5, 2024 at 4:05?AM Gerrit Draisma <gdraisma at xs4all.nl> wrote:
> Dear R-helpers,
>
> In the plot below I would like to have labels at positions 2^(3*(0:10)),
> and keep the labels in the exponential format.
> I tried