Publications by Leo Tzang

Homework1

20.03.2024

# 3.6.1 to 3.6.6. library(ISLR2) data("Boston") attach(Boston) lm.fit <- lm(medv ~ lstat, data = Boston) lm.fit ## ## Call: ## lm(formula = medv ~ lstat, data = Boston) ## ## Coefficients: ## (Intercept) lstat ## 34.55 -0.95 summary(lm.fit) ## ## Call: ## lm(formula = medv ~ lstat, data = Boston) ## ## Residuals: ## M...

56 sym R (10312 sym/44 pcs) 9 img

Document

10.03.2024

# chapter5 cfa1 prob_equities <- 0.6 prob_tbills <- 0.4 expected_return_equities <- 50000 expected_return_tbills <- -30000 expected_risk_premium <- expected_return_equities - expected_return_tbills print(paste("Expected risk premium:", expected_risk_premium)) ## [1] "Expected risk premium: 80000" # chapter6 problem set 10 # Given data weights_bi...

28 sym

Publish Document 110035145 羅暐傑

09.01.2024

library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(tidyr) library(readr) unique_categories <- read_csv("bike folder/bike_orderlines.csv") ## Rows: 15644 Column...

24 sym R (2995 sym/21 pcs)

Final

09.01.2024

#1. Count the usefulness by learning platform library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.4.4 ✔ tibble 3.2.1 ## �...

16 sym R (6108 sym/12 pcs) 1 img

HW5重做

08.01.2024

library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(tidyr) library(readr) unique_categories <- read_csv("bike folder/bike_orderlines.csv") ## Rows: 15644 Column...

24 sym R (2995 sym/21 pcs)

HW4 重做

08.01.2024

reshape it from wide to long format (stock_df_long) library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.4 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.4.4 ✔ tibble 3.2....

61 sym R (1592 sym/6 pcs)

Hw3 重做

08.01.2024

Which product categories have the most sales? Use ‘bike_orderline_tbl’. Group and summarize the data calling the new column as ‘Sales’. Format the sales as ‘dollars()’. Rename ‘category_1’ to ‘Prime category’, ‘category_2’ to ‘Secondary category’, ‘frame_material’ to ‘Frame Material’. library(dplyr) ## ## Atta...

302 sym R (1878 sym/9 pcs)

HW2 重做 NETFLIX

08.01.2024

You want to learn which six actors have the most appearances in TV show. The multiple actors are listed in the cast column. Transform the data so that for each TV show, every actor has a row. Rename the column name “cast” to “actor”. library(tidyr) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'pa...

243 sym R (902 sym/6 pcs)

DocumentFinalExam

02.01.2024

install.packages("nycflights13") ## Installing package into '/cloud/lib/x86_64-pc-linux-gnu-library/4.3' ## (as 'lib' is unspecified) library(nycflights13) data(flights) # Question 1: How many flights arrived late each month? late_arrivals <- flights[flights$arr_delay > 5, ] late_arrivals_by_month <- table(format(late_arrivals$time_hour, "%Y-%m")...

26 sym R (8255 sym/22 pcs) 1 img

Publish DocumentFinalExamm

02.01.2024

install.packages("nycflights13") ## Installing package into '/cloud/lib/x86_64-pc-linux-gnu-library/4.3' ## (as 'lib' is unspecified) library(nycflights13) data(flights) # Question 1: How many flights arrived late each month? late_arrivals <- flights[flights$arr_delay > 5, ] late_arrivals_by_month <- table(format(late_arrivals$time_hour, "%Y-%m")...

24 sym R (9811 sym/20 pcs) 1 img