An Introduction to R Notes on R: A Programming Environment for Data Analysis and Graphics Version 4.0.3 (2020-10-10) W. N. Venables, D. M. Smith
Map making — the art of cartography — is an ancient skill that involves communication, intuition, and an element of creativity. Static mapping is straightforward with plot(), as we saw in Section 2.2.3. It is possible to create advanced maps using bas
```{r} plot(1:100, (1:100) ^ 2, main = "plot(1:100, (1:100) ^ 2)") ``` If you only pass a single argument, it is interpreted as the `y` argument, and the `x` argument is the sequence from 1 to the length of `y`. ```{r} plot((1:100) ^ 2, main = &
Post a Comment:
Showing 0 Comments: