kleine Erweiterung bei plots

This commit is contained in:
Meik Hellmund 2024-05-28 18:09:35 +02:00
parent 2ebd0803ae
commit 421f382d07

View File

@ -172,6 +172,16 @@ plot(x, y, seriestype = :sticks, linewidth = 4, seriescolor = "#00b300",
)
```
Viele Angaben können auch sehr weit abgekürzt werden, siehe z.B. die Angabe `Aliases:` in der obigen Ausgabe des Kommandos `plotattr("linestyle")`.
Das folgende `plot()`-Kommando is äquivalent zum vorherigen:
```{julia}
#| eval: false
plot(x, y, t = :sticks, w = 4, c = "#00b300", m = (:circle, 8, :green ))
```
### Weitere Extras
```{julia}