Transformação dos Dados Flashcards

1
Q

Filtrar os dados

A

filter(data.frame, variável == , variável == ,,,)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Selecionar valores dentro de um intervalo

A

between(data$variável, limite inferior, limite superior)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Ordenar um data frame

A

arrange(data, variavel1, variável2, desc( variável3 ) )

desc ordena de forma decrescente

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Selecionar apenas algumas colunas do data frame

A

select(data, variavel1, variável2, variável3)
Verificar funções:
starts_with( ), contains( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Renomear uma coluna

A

rename(data, variável = , variável2 = )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Criar uma nova coluna no data.frame

A

mutate(data, nova_coluna = coluna1coluna2/10,
nova_coluna2 = coluna3
22)
Pode-se referir a colunas criadas na mesma linha

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Se apenas quer se criar novas colunas e somente utiliza-las

A

transmute(data, nova_coluna = coluna1*coluna2/10,

nova_coluna2 = coluna3*22)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Sumarizar um data.frame de acordo com um determinado grupo

A

group_by(data = , variável agrupadora)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

teste lógico de if e else

A

ifelse( tese lógico, verdadeiro, falso )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly