-
Notifications
You must be signed in to change notification settings - Fork 14
/
ggplot2-05-geomai.Rmd
193 lines (139 loc) · 4 KB
/
ggplot2-05-geomai.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
---
title: "Sistemos ggplot2 pagrindai"
subtitle: "Geomai"
output: html_notebook
editor_options:
chunk_output_type: inline
---
```{r setup}
library(scales)
library(MASS)
library(plotly)
library(tidyverse)
knitr::opts_chunk$set(fig.height = 3, fig.width = 6)
Sys.setlocale(locale = "Lithuanian")
```
Geometriniai objektai (geomai)
=============================================================================
Geomai
-----------------------------------------------------------------------------
```{r}
# Pirmasis
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
```
```{r}
# Antrasis
ggplot(data = mpg) +
geom_smooth(mapping = aes(x = displ, y = hwy))
```
Geomų ir estetinių elementų (ne)suderinamumas
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg) +
geom_smooth(mapping = aes(x = displ,
y = hwy,
linetype = drv))
```
ggplot2 ir ją papildantys paketai
-----------------------------------------------------------------------------
https://www.ggplot2-exts.org
Estetikos elementas `group`
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg) +
geom_smooth(mapping = aes(x = displ, y = hwy))
```
```{r}
ggplot(data = mpg) +
geom_smooth(mapping = aes(x = displ, y = hwy, group = drv))
```
```{r}
ggplot(data = mpg) +
geom_smooth(
mapping = aes(x = displ, y = hwy, color = drv),
show.legend = FALSE
)
```
Keli geomai tame pačiame grafike
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy)) +
geom_smooth(mapping = aes(x = displ, y = hwy))
```
Keli geomai tame pačiame grafike: rašome glausčiau
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_point() +
geom_smooth()
```
Numatytojo išdėstymo papildymas ar pakeitimas
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_point(mapping = aes(color = class)) +
geom_smooth()
```
Numatytųjų duomenų keitimas
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_point(mapping = aes(color = class)) +
geom_smooth(data = filter(mpg, class == "subcompact"), se = FALSE)
```
Užduotys: Geomai
-----------------------------------------------------------------------------
1. Kurį geomą naudosite braižyti:
* Linijų grafiką?
* Stačiakampę diagramą (boxplot)?
* Histogramą?
* Sklaidos diagramą (scatterplot)?
2. **Mintimis** įvykdykite šį kodą ir nuspėkite rezultatą. Tik po to patikrinkite, ar jūsų mintys sutapo su tikruoju atsakymu.
```{r eval=FALSE, include=FALSE}
ggplot(data = mpg, mapping = aes(x = displ, y = hwy, color = drv)) +
geom_point() +
geom_smooth(se = FALSE)
```
3. Viename iš šio skyriaus grafikų buvo panaudotas argumentas `show.legend = FALSE`. Ką jis daro? Kas įvyksta jį pašalinus? Kodėl jis buvo naudotas ankstesniuose pavyzdžiuose?
```{r}
```
4. Ką atlieka `se` argumentas funkcijoje `geom_smooth()`?
```{r}
```
5. Ar šie 2 grafikai atrodys skirtingai? Kodėl?
```{r eval=FALSE, include=FALSE}
# Grafikas 1
ggplot(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_point() +
geom_smooth()
```
```{r eval=FALSE, include=FALSE}
# Grafikas 2
ggplot() +
geom_point(data = mpg, mapping = aes(x = displ, y = hwy)) +
geom_smooth(data = mpg, mapping = aes(x = displ, y = hwy))
```
6. Parašykite R kodą, kuris braižo šiuos šešis grafikus
```{r}
knitr::include_graphics("parasykite-koda-grafikams.png")
```
```{r}
# Grafikas 1
```
```{r}
# Grafikas 2
```
```{r}
# Grafikas 3
```
```{r}
# Grafikas 4
```
```{r}
# Grafikas 5
```
```{r}
# Grafikas 6
```