Skip to content

Commit

Permalink
Don't split tables; remaining Rmd files
Browse files Browse the repository at this point in the history
  • Loading branch information
neilfws committed Jul 17, 2018
1 parent e231b6b commit 6efdd81
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
8 changes: 4 additions & 4 deletions abacbs2017/code/R/abacbs2017.Rmd
Expand Up @@ -169,7 +169,7 @@ abacbs2017 %>%
arrange(desc(retweet_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Favourites
Expand Down Expand Up @@ -199,7 +199,7 @@ abacbs2017 %>%
arrange(desc(favorite_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Quotes
Expand Down Expand Up @@ -237,7 +237,7 @@ abacbs2017 %>%
select(screen_name, text, quote_count = n) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Media
Expand All @@ -262,7 +262,7 @@ abacbs2017_media <- abacbs2017 %>%
abacbs2017_media %>%
slice(1:10) %>%
select(screen_name, text, favorite_count) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

### Most liked media image
Expand Down
8 changes: 4 additions & 4 deletions bosc2017/code/R/bosc2017.Rmd
Expand Up @@ -142,7 +142,7 @@ bosc17 %>%
arrange(desc(retweet_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Favourites
Expand Down Expand Up @@ -171,7 +171,7 @@ bosc17 %>%
arrange(desc(favorite_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Quotes
Expand Down Expand Up @@ -208,7 +208,7 @@ bosc17 %>%
select(screen_name, text, quote_count = n) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Media
Expand All @@ -232,7 +232,7 @@ bosc17_media <- bosc17 %>%
bosc17_media %>%
slice(1:10) %>%
select(screen_name, text, favorite_count) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

### Most liked media image
Expand Down
8 changes: 4 additions & 4 deletions lornegenome2017/code/R/lornegenome2017.Rmd
Expand Up @@ -144,7 +144,7 @@ lornegenome17 %>%
arrange(desc(retweet_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Favourites
Expand Down Expand Up @@ -173,7 +173,7 @@ lornegenome17 %>%
arrange(desc(favorite_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Quotes
Expand Down Expand Up @@ -210,7 +210,7 @@ lornegenome17 %>%
select(screen_name, text, quote_count = n) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Media
Expand All @@ -234,7 +234,7 @@ lornegenome17_media <- lornegenome17 %>%
lornegenome17_media %>%
slice(1:10) %>%
select(screen_name, text, favorite_count) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

### Most liked media image
Expand Down
8 changes: 4 additions & 4 deletions sbrs2017/code/R/sbrs17.Rmd
Expand Up @@ -136,7 +136,7 @@ sbrs17 %>%
arrange(desc(retweet_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Favourites
Expand Down Expand Up @@ -165,7 +165,7 @@ sbrs17 %>%
arrange(desc(favorite_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Quotes
Expand Down Expand Up @@ -202,7 +202,7 @@ sbrs17 %>%
select(screen_name, text, quote_count = n) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Media
Expand All @@ -226,7 +226,7 @@ sbrs17_media <- sbrs17 %>%
sbrs17_media %>%
slice(1:10) %>%
select(screen_name, text, favorite_count) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

### Most liked media image
Expand Down
8 changes: 4 additions & 4 deletions user2018/code/R/user2018.Rmd
Expand Up @@ -153,7 +153,7 @@ user2018 %>%
arrange(desc(retweet_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Favourites
Expand Down Expand Up @@ -182,7 +182,7 @@ user2018 %>%
arrange(desc(favorite_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Quotes
Expand Down Expand Up @@ -219,7 +219,7 @@ user2018 %>%
select(screen_name, text, quote_count = n) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Media
Expand All @@ -243,7 +243,7 @@ user2018 %>%
arrange(desc(favorite_count)) %>%
select(screen_name, text, favorite_count) %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

### Most liked media image
Expand Down
8 changes: 4 additions & 4 deletions vizbi2017/code/R/vizbi17.Rmd
Expand Up @@ -139,7 +139,7 @@ vizbi17 %>%
arrange(desc(retweet_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Favourites
Expand Down Expand Up @@ -168,7 +168,7 @@ vizbi17 %>%
arrange(desc(favorite_count)) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Quotes
Expand Down Expand Up @@ -205,7 +205,7 @@ vizbi17 %>%
select(screen_name, text, quote_count = n) %>%
distinct() %>%
slice(1:10) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

# Media
Expand All @@ -229,7 +229,7 @@ vizbi17_media <- vizbi17 %>%
vizbi17_media %>%
slice(1:10) %>%
select(screen_name, text, favorite_count) %>%
pander(justify = c("left", "left", "right"))
pander(justify = c("left", "left", "right"), split.table = Inf)
```

### Most liked media image
Expand Down

0 comments on commit 6efdd81

Please sign in to comment.