forked from finiterank/elecciones-congreso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dejsonatabla.Rmd
35 lines (25 loc) · 864 Bytes
/
dejsonatabla.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
Conversión de los datos de candidatos en dataframe
========================================================
```{r}
library(rjson)
library(reshape2)
```
```{r}
json <- fromJSON(file='minadecandidatos.json', method='C')
```
Esta es la lista que te dig
```{r}
lista.seguidores <- c()
lista.candidatos <- c()
for(i in 1:149){
lista.seguidores <- c(lista.seguidores, json[[i]]$seguidores)
lista.candidatos <- c(lista.candidatos, rep(row.names(summary(json))[i], length(json[[i]]$seguidores)))
}
seguidores.candidatos.df <- data.frame(candidato = lista.candidatos, seguidor = lista.seguidores)
```
En mi computador el siguiente comando no aguanta: R colapsa y pide ser reiniciado.
Se puede hacer con fragmentos del data frame, pero después es imposible hacer merge.
```{r}
tabla <- dcast(seguidores.candidatos.df, candidato ~ seguidor)
```
¿Opciones?