R Tutorial - Anpassen des Plots In R


Post a Comment:





Showing 0 Comments:
Be the first to comment!

External ressources related to R Tutorial - Customizing Your Plots In R

An Introduction to R
https://cran.r-project.org/doc/manuals/r-release/R-intro.pdf

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

Chapter 8 Making maps with R | Geocomputation with R
https://geocompr.robinlovelace.net/adv-map.html

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

plot function | R Documentation
https://www.rdocumentation.org/packages/graphics/versions/3.6.2/topics/plot

```{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 = &