Lecture 26
            Duke University 
 STA 199 - Fall 2022
          
12/6/22
Fill out course + TA evaluations
Clone ae-21
Course + TA evaluations – We’re at ~40% only
Any project questions? Any questions about remaining assessments?

text <- c("Oh! Get me away from here, I'm dying",
          "Play me a song to set me free",
          "Nobody writes them like they used to",
          "So it may as well be me",
          "Here on my own now after hours",
          "Here on my own now on a bus",
          "Think of it this way",
          "You could either be successful or be us",
          "With our winning smiles, and us",
          "With our catchy tunes or worse",
          "Now we're photogenic",
          "You know, we don't stand a chance")
text [1] "Oh! Get me away from here, I'm dying"   
 [2] "Play me a song to set me free"          
 [3] "Nobody writes them like they used to"   
 [4] "So it may as well be me"                
 [5] "Here on my own now after hours"         
 [6] "Here on my own now on a bus"            
 [7] "Think of it this way"                   
 [8] "You could either be successful or be us"
 [9] "With our winning smiles, and us"        
[10] "With our catchy tunes or worse"         
[11] "Now we're photogenic"                   
[12] "You know, we don't stand a chance"      # A tibble: 12 × 2
    line text                                   
   <int> <chr>                                  
 1     1 Oh! Get me away from here, I'm dying   
 2     2 Play me a song to set me free          
 3     3 Nobody writes them like they used to   
 4     4 So it may as well be me                
 5     5 Here on my own now after hours         
 6     6 Here on my own now on a bus            
 7     7 Think of it this way                   
 8     8 You could either be successful or be us
 9     9 With our winning smiles, and us        
10    10 With our catchy tunes or worse         
11    11 Now we're photogenic                   
12    12 You know, we don't stand a chance      ae-21ae-21 (repo name will be suffixed with your GitHub name).