-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercicio3.rmd
53 lines (43 loc) · 969 Bytes
/
exercicio3.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
---
title: "R Notebook"
output: html_notebook
---
Exercício3:
```{r}
dados4 = read.csv("dados.csv", sep = ";", na.strings = "", stringsAsFactors = T)
head(dados4)
```
```{r}
summary(dados4)
```
Explorar dados, colunas categóricas:
```{r}
counts = table(dados4$MUNICIPIO)
barplot(counts, main = "Municipio", xlab = "Municipio")
```
Histograma condicional:
```{r}
dados4
histogram(dados4$PIB)
```
Dispersão:
```{r}
plot(dados4$MUNICIPIO, dados4$PIB)
plot(dados4$MUNICIPIO, dados4$PIB, ylab = "MUNICIPIO", xlab = "PIB", col = "blue", main = "Abismo Social", pch = 20)
plot(dados4$MUNICIPIO, dados4$PIB, ylab = "MUNICIPIO", xlab = "PIB", col = "blue", main = "Abismo Social", pch = 20, type="l")
```
```{r}
plot(dados4)
```
PIB:
```{r}
summary(dados4$PIB)
boxplot(dados4$PIB)
hist(dados4$PIB)
```
Valor Empenho:
```{r}
summary(dados4$VALOREMPENHO)
boxplot(dados4$VALOREMPENHO)
hist(dados4$VALOREMPENHO)
```