Skip to content

Commit f80a851

Browse files
committed
fixed redundant head command
1 parent afe2b6c commit f80a851

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

for_loops_and_apply_fam_master.Rmd

+5-3
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,13 @@ max_season = sapply(unique(tv_data$title), function(show){
414414
max(all_season_numbers)
415415
})
416416
417-
head(max_season)
418417
```
419418

419+
#### sapply() will output your data in the simplest form it can. Here, we see if outputted a vector because we were trying to access 1 value (the max season number) from each tv show title
420+
420421
```{r}
421422
head(max_season)
422423
```
423-
#### sapply() will output your data in the simplest form it can. Here, we see if outputted a vector because we were trying to access 1 value (the max season number) from each tv show title
424424

425425

426426
```{r}
@@ -434,8 +434,10 @@ avg_rating_per_show = sapply(unique(tv_data$title), function(show){
434434
})
435435
head(avg_rating_per_show)
436436
```
437+
437438
#### You can see sapply() outputted a list because each tv show had a variable number of seasons and thus a variable number of ratings. Thus, the simplest data structure was a list.
438439

440+
439441
#### Let's look at anther example -- Here, we will first subset on those with 2 seasons (or rather, 2 entries in the dataset):
440442

441443
Use an sapply() to figure out how many seasons/entries each show has
@@ -456,7 +458,7 @@ avg_rating_two_seasons = sapply(two_seasons, function(show){
456458
(tv_data$av_rating[tv_data$title == show])
457459
})
458460
459-
avg_rating_two_seasons
461+
head(t(avg_rating_two_seasons))
460462
```
461463
#### Because every show had 2 data points, a matrix was the simplest output
462464

0 commit comments

Comments
 (0)