오류해결 11

[R] skimr 그래프 깨짐 해결방법

1. 문제 skimr 패키지의 skim 을 활용하여 EDA 를 하려고 하는데 histogram(스파크라인차트)이 깨져서 안보입니다. 2. 재현 library(skimr) skim(iris) 3. 원인 Windows 에서 유니코드 관련 버그입니다. 4. 해결책 library(skimr) 로 패키지 로드 이후에 다음 함수를 호출하세요. fix_windows_histograms() 5. 참고 ?fix_windows_histograms Fix unicode histograms on Windows Description This functions changes your session's locale to address issues with printing histograms on Windows. Usage fix_..

카테고리 없음 2023.01.03

[R] prediction from a rank-deficient fit may be misleading

1. 발생 train 함수로 로지스틱 회귀 모델(method="glm")을 만든 후에 predict 함수를 이용하여 예측을 하려고 시도하다 발생하였습니다. prediction from a rank-deficient fit may be misleading library(caret) library(dplyr) library(recipes) library(randomForest) set.seed(2022) titanic % mutate(cabin=ifelse(cabin =="",NA,cabin)) %>% mutate(embarked=ifelse(embarked =="",NA,embarked)) %>% mutate(survived=factor(survived, levels =c(0,1), labels = c("..

ADP (R) 2022.10.23

[R] NA in the series 오류 해결

1. 문제 acf 거래 계산을 위해 TSdist 패키지의 TSDatabaseDistances 함수를 사용하다 오류가 발생했어요. 기출문제 풀이를 해보려는 과정에서 (2022.07.14 - [ADP 실기 준비(R)] - [ADP 실기 study log] ADP 23회 코로나 시계열 데이터 ) 에러가 발생했습니다. 2. 재현 rm(list=ls()) pacman::p_load(tidyverse,magrittr,lubridate,reshape2,recipes,forecast, factoextra, dtw) library(TSdist) temp % read_delim(delim = ";") %>% select(date, country, confirmed, new_cases, dead) temp %>% group..

ADP (R) 2022.08.08

[R] Entry “TSDistances” not in registry 오류 해결

. 1. 문제 acf 거리 계산을 위해 TSdist 패키지의 TSDatabaseDistances 함수를 사용하다 오류가 발생했어요. 기출문제 풀이를 해보려는 과정에서 (2022.07.14 - [ADP 실기 준비(R)] - [ADP 실기 study log] ADP 23회 코로나 시계열 데이터 ) 전에는 에러가 발생했습니다. 오랫만에 그 문제를 해결하려고 시도하는 중에, 원래 오류 해결은 못하고 새로운 오류를 만났어요 2. 재현 rm(list=ls()) pacman::p_load(tidyverse,magrittr,lubridate,reshape2,recipes,forecast, factoextra, dtw) temp % read_delim(delim = ";") %>% select(date, country,..

ADP (R) 2022.08.07