[R] Adding Axis value to R Plot

Bert Gunter bgunter@4567 @end|ng |rom gm@||@com
Mon Jun 25 17:00:49 CEST 2018


See ?plot.default, where it says:

axes

a logical value indicating whether both axes should be drawn on the plot.
Use graphical parameter
<http://127.0.0.1:29349/help/library/graphics/help/graphical%20parameter>
"xaxt" or "yaxt" to suppress just one of the axes.
 and use the "at" argument of ?axis to draw the axis and add ticks where
you like.

Cheers,
Bert




Bert Gunter

"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )

On Mon, Jun 25, 2018 at 7:36 AM, AbouEl-Makarim Aboueissa <
abouelmakarim1962 using gmail.com> wrote:

> Dear All: good morning
>
>
>
> within this code, please see below,
>
>
> plot(0:1.0, 0:1.0, type = "n",  yaxs = "i", xaxs = "i", xaxt = "n", yaxt =
> "n", xlab = "Age", ylab = "Distance (ft)",  cex.lab=1.5)
> grid(nx = 10, ny = 10, col = "lightgray", lty = "dotted", lwd = 2)
>
>
>
> Is there a way to force R to add the following Axis ticks to this plot
>
>
> xticks <- c(15,25,35,45,55,65,75,85)
> yticks <- c(300,400,500,600)
>
>
>
> with many thanks
> abou
> ______________________
>
>
> *AbouEl-Makarim Aboueissa, PhD*
>
> *Professor of Statistics*
>
> *Department of Mathematics and Statistics*
> *University of Southern Maine*
>
>         [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help using r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/
> posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

	[[alternative HTML version deleted]]




More information about the R-help mailing list