├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── data.R ├── README.md ├── data └── richmondway.rda ├── man └── richmondway.Rd └── richmondway.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^richmondway\.Rproj$ 2 | ^\.Rproj\.user$ 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .Rdata 4 | .httr-oauth 5 | .DS_Store 6 | .quarto 7 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: richmondway 2 | Title: A dataset containing the number of times the word f*ck was used in Ted Lasso by Roy Kent 3 | Version: 0.0.0.9000 4 | Authors@R: 5 | person("Deepsha", "Menghani", email = "deepshamenghani07@gmail.com", role = c("aut", "cre")) 6 | Description: Downloads the dataset containing the number of times the word f*ck was used in Ted Lasso by Roy Kent. 7 | License: file LICENSE 8 | Encoding: UTF-8 9 | Roxygen: list(markdown = TRUE) 10 | RoxygenNote: 7.2.3 11 | Depends: 12 | R (>= 2.10) 13 | LazyData: true 14 | URL: https://github.com/deepshamenghani/richmondway 15 | BugReports: https://github.com/deepshamenghani/richmondway/issues 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal (CC0 1.0) Public Domain Dedication 2 | 3 | The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. 4 | 5 | You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. 6 | 7 | For more information, please see 8 | 9 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- 1 | #' Data to showcase f-ck count 2 | #' 3 | #' A dataset containing the number of times the word f-ck was used in Ted Lasso by Roy Kent. 4 | #' 5 | #' @format A data frame with 34 rows and 16 columns. 6 | #' \describe{ 7 | #' \item{Character}{Single value - Roy Kent} 8 | #' \item{Episode_order}{The order of episodes from the 1st to the last} 9 | #' \item{Season}{The season 1,2 or 3 associated with the count} 10 | #' \item{Episode}{The episode within the season associated with the count} 11 | #' \item{Season_Episode}{Season and episode as a combined variable} 12 | #' \item{F_count_RK}{Roy Kent's F-ck count in that season and episode} 13 | #' \item{F_count_total}{Total F-ck count by all characters combined including Roy Kent in that season and episode} 14 | #' \item{cum_rk_season}{Roy Kent's cumulative F-ck count within that season} 15 | #' \item{cum_total_season}{Cumulative total F-ck count by all characters combined including Roy Kent within that season} 16 | #' \item{cum_rk_overall}{Roy Kent's cumulative F-ck count across all episodes and seasons until that episode} 17 | #' \item{cum_total_overall}{Cumulative total F-ck count by all characters combined including Roy Kent across all episodes and seasons until that episode} 18 | #' \item{F_score}{Roy Kent's F-count divided by the total F-count in the episode} 19 | #' \item{F_perc}{F-score as percentage} 20 | #' \item{Dating_flag}{Flag of yes or no for Whether during the episode Roy Kent was dating the characted Keeley} 21 | #' \item{Coaching_flag}{Flag of yes or no for Whether during the episode Roy Kent was coaching the team} 22 | #' \item{Imdb_rating}{Imdb rating of that episode} 23 | #' } 24 | #' 25 | #' @source Created by Deepsha Menghani by watching the show and counting the number of F-cks used in sentences and as gestures 26 | #' 27 | #' @examples 28 | #' data(richmondway) 29 | "richmondway" 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # richmondway 2 | A dataset containing the number of times the word f*ck was used in Ted Lasso by Roy Kent 3 | 4 | ![richmondwayhex](https://github.com/deepshamenghani/richmondway/assets/46545400/fc47cfa1-2ac9-4bff-867a-ca1bbb17cfa6) 5 | 6 | # Package installation 7 | devtools::install_github("deepshamenghani/richmondway") 8 | 9 | # Accessing data 10 | data(richmondway) 11 | 12 | # Description 13 | A dataset containing the number of times the word f-ck was used in Ted Lasso by Roy Kent. 14 | 15 | # Usage 16 | richmondway 17 | Format 18 | A data frame with 34 rows and 16 columns. 19 | 20 | Character 21 | Single value - Roy Kent 22 | 23 | Episode_order 24 | The order of episodes from the 1st to the last 25 | 26 | Season 27 | The season 1,2 or 3 associated with the count 28 | 29 | Episode 30 | The episode within the season associated with the count 31 | 32 | Season_Episode 33 | Season and episode as a combined variable 34 | 35 | F_count_RK 36 | Roy Kent's F-ck count in that season and episode 37 | 38 | F_count_total 39 | Total F-ck count by all characters combined including Roy Kent in that season and episode 40 | 41 | cum_rk_season 42 | Roy Kent's cumulative F-ck count within that season 43 | 44 | cum_total_season 45 | Cumulative total F-ck count by all characters combined including Roy Kent within that season 46 | 47 | cum_rk_overall 48 | Roy Kent's cumulative F-ck count across all episodes and seasons until that episode 49 | 50 | cum_total_overall 51 | Cumulative total F-ck count by all characters combined including Roy Kent across all episodes and seasons until that episode 52 | 53 | F_score 54 | Roy Kent's F-count divided by the total F-count in the episode 55 | 56 | F_perc 57 | F-score as percentage 58 | 59 | Dating_flag 60 | Flag of yes or no for Whether during the episode Roy Kent was dating the characted Keeley 61 | 62 | Coaching_flag 63 | Flag of yes or no for Whether during the episode Roy Kent was coaching the team 64 | 65 | Imdb_rating 66 | Imdb rating of that episode 67 | 68 | Source 69 | Created by Deepsha Menghani by watching the show and counting the number of F-cks used in sentences and as gestures 70 | 71 | -------------------------------------------------------------------------------- /data/richmondway.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepshamenghani/richmondway/c1d46930a0e700977d99b4e584e773d5e035d110/data/richmondway.rda -------------------------------------------------------------------------------- /man/richmondway.Rd: -------------------------------------------------------------------------------- 1 | % Generated by roxygen2: do not edit by hand 2 | % Please edit documentation in R/data.R 3 | \docType{data} 4 | \name{richmondway} 5 | \alias{richmondway} 6 | \title{Data to showcase f-ck count} 7 | \format{ 8 | A data frame with 34 rows and 16 columns. 9 | \describe{ 10 | \item{Character}{Single value - Roy Kent} 11 | \item{Episode_order}{The order of episodes from the 1st to the last} 12 | \item{Season}{The season 1,2 or 3 associated with the count} 13 | \item{Episode}{The episode within the season associated with the count} 14 | \item{Season_Episode}{Season and episode as a combined variable} 15 | \item{F_count_RK}{Roy Kent's F-ck count in that season and episode} 16 | \item{F_count_total}{Total F-ck count by all characters combined including Roy Kent in that season and episode} 17 | \item{cum_rk_season}{Roy Kent's cumulative F-ck count within that season} 18 | \item{cum_total_season}{Cumulative total F-ck count by all characters combined including Roy Kent within that season} 19 | \item{cum_rk_overall}{Roy Kent's cumulative F-ck count across all episodes and seasons until that episode} 20 | \item{cum_total_overall}{Cumulative total F-ck count by all characters combined including Roy Kent across all episodes and seasons until that episode} 21 | \item{F_score}{Roy Kent's F-count divided by the total F-count in the episode} 22 | \item{F_perc}{F-score as percentage} 23 | \item{Dating_flag}{Flag of yes or no for Whether during the episode Roy Kent was dating the characted Keeley} 24 | \item{Coaching_flag}{Flag of yes or no for Whether during the episode Roy Kent was coaching the team} 25 | \item{Imdb_rating}{Imdb rating of that episode} 26 | } 27 | } 28 | \source{ 29 | Created by Deepsha Menghani by watching the show and counting the number of F-cks used in sentences and as gestures 30 | } 31 | \usage{ 32 | richmondway 33 | } 34 | \description{ 35 | A dataset containing the number of times the word f-ck was used in Ted Lasso by Roy Kent. 36 | } 37 | \examples{ 38 | data(richmondway) 39 | } 40 | \keyword{datasets} 41 | -------------------------------------------------------------------------------- /richmondway.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: No 4 | SaveWorkspace: No 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: Sweave 13 | LaTeX: pdfLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | StripTrailingWhitespace: Yes 17 | LineEndingConversion: Posix 18 | 19 | BuildType: Package 20 | PackageUseDevtools: Yes 21 | PackageInstallArgs: --no-multiarch --with-keep.source 22 | PackageRoxygenize: rd,collate,namespace 23 | --------------------------------------------------------------------------------