https://www.kaggle.com/code/yimstar9/4th-type1/notebook 4th-type1 Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources www.kaggle.com 작업형1 풀이 1-1. age 컬럼의 3사분위수와 1사분위수의 차를 절대값으로 구하고, 소수점 버려서, 정수로 출력 data_path: ../input/bigdatacertificationkr/basic1.csv 정답 : [50] df <- read.csv("..
/input/bigdatacertificationkr/basic1.csv") library(dplyr) ans<-df%>%summarise(dif=IQR(age))%>%floor print(ans) 1-2.(loves반응+wows반응)/(reactions반응) 비율이 0.4보다 크고 0.5보다 작으면서, t...
원문 링크 : [빅분기 실기 R] 4회 기출 작업형1