Publications by Kyra Ligas

Assignment 3

27.09.2024

1. rename(): (4 points) Rename the “Film” column to “movie_title” and “Year” to “release_year”. q1 <- movies %>% rename(movie_title = Film , release_year = Year) head(q1) ## # A tibble: 6 × 8 ## movie_title Genre `Lead Studio` `Audience score %` Profitability ## <chr> <chr> <chr> ...

1402 sym Python (6037 sym/14 pcs)

DATA 3210 - Assignment 2

13.09.2024

Question 1 library(readr) HR_comma_sep <- read_csv("Downloads/HR_comma_sep.csv") ## Rows: 14999 Columns: 10 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (2): Department, ...

607 sym R (475 sym/2 pcs)