-
Notifications
You must be signed in to change notification settings - Fork 14
/
ggplot2-02-duomenys.Rmd
101 lines (70 loc) · 1.74 KB
/
ggplot2-02-duomenys.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
---
title: "Sistemos ggplot2 pagrindai"
subtitle: "Duomenys ir pirmieji žingsniai su ggplot2"
output: html_notebook
editor_options:
chunk_output_type: inline
---
```{r setup}
library(tidyverse)
knitr::opts_chunk$set(fig.height = 3, fig.width = 6)
Sys.setlocale(locale = "Lithuanian")
```
Duomenys ir pirmieji žingsniai su `ggplot2`
=============================================================================
Paketų užkrovimas
-----------------------------------------------------------------------------
```{r}
library(ggplot2)
```
```{r}
library(tidyverse)
```
Duomenys: automobiliai
-----------------------------------------------------------------------------
```{r}
ggplot2::mpg
```
```{r}
mpg
```
Mus dominantys kintamieji
-----------------------------------------------------------------------------
```{r}
# Atsakymas kortelėje „Help“
?mpg
```
Rodome tik 2 kintamuosius: `displ` ir `hwy`
```{r}
dplyr::select(mpg, displ, hwy)
```
Pirmasis mūsų grafikas: sklaidos diagrama
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy))
```
Užduotys 1
-----------------------------------------------------------------------------
```{r}
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy, color = class))
```
```{r}
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy, size = class))
```
```{r}
# Left
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy, alpha = class))
```
```{r}
# Right
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy, shape = class))
```
```{r}
ggplot(data = mpg) +
geom_point(mapping = aes(x = displ, y = hwy), color = "blue")
```