-
Notifications
You must be signed in to change notification settings - Fork 0
/
04-TabelasFrequencia.R
39 lines (32 loc) · 998 Bytes
/
04-TabelasFrequencia.R
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
#Definindo a pasta de trabalho
setwd("C:/Users/User/Desktop/DSA/PowerBI/Capitulo12")
getwd()
# Carregando o DataSet
dados <- read.csv("Usuarios.csv", dec = ".", sep = ",", h = T, fileEncoding = "windows-1252")
# visualizando e sumarizando os dados
View(dados)
names(dados)
str(dados)
summary(dados$salario)
summary(dados$grau_instrucao)
mean(dados$salario)
mean(dados$grau_instrucao)
# Tabelas de Frequencia Absolutas
freq <- table(dados$grau_instrucao)
View(freq)
# Tabela de Frequencias Relativas
freq_rel <- prop.table(freq)
View(freq_rel)
# Porcentagem (100 * freq_rel_table)
p_freq_rel <- 100 * prop.table(freq_rel)
View(p_freq_rel)
# Adiciona linhas de total
View(freq)
freq <- c(freq, sum(freq))
names(freq)[4] <- "Total"
View(freq)
# Tabela Final com todos os vetors
tabela_final <- cbind(freq,
freq_rel = round(freq_rel, digits = 2),
p_freq_rel = round(p_freq_rel, digits = 2) )
View(tabela_final)