search for: samplelog

Displaying 1 result from an estimated 1 matches for "samplelog".

Did you mean: samples_log
2009 Sep 16
1
Can someone please explain why the last tick mark on this chart is not showing?
...50, 6924, 6268, 8010, 7575, 8200, 9240) # Plotting code # Box settings par(bty="l",ps=7,tcl=0.2,mgp=c(0.5,0.2,0),bg="white"); # Make x axis match exactly the data par(xaxs="i",yaxs="r"); # Margins par(mar=c(1.2,1.8,1,1)) # Step 1: Generate logs for the data sampleLog<-log(sample,10) # Step 2: Determine pretty min/max for the data purtee<-pretty(c(sample,pxTarget)) dataMin<-min(sample,na.rm=T)*0.95 dataMax<-max(purtee) # Step 3: Create exponential series t<-exp(seq(log(dataMin),log(dataMax),length=11)) t2<-round(t,-1) t2[t2==0]<-1 # natural...