statgarten / datatoys

Let's play with data! We prepared toy data for data newbies.
https://statgarten.github.io/datatoys/
Creative Commons Zero v1.0 Universal
29 stars 9 forks source link

일부 데이터 description이 반영 이슈 #39

Closed YoungjunNa closed 1 year ago

YoungjunNa commented 1 year ago

최근 업로드된 일부 데이터 description이 반영이 안되는 것 같은데 이유가 뭘까요..? data.R 파일을 살펴봐도 문제가 없어 보이는데.. 음...

스크린샷 2023-08-23 오전 10 42 49
library(datatoys)
library(dplyr)

data(package = "datatoys")$results %>%
  as_tibble() %>%
  select(Item, Title) %>%
  rename("데이터셋" = "Item") %>%
  tidyr::separate(Title, c("출처", "설명"), sep = " ", extra = "merge") %>%
  arrange(출처) %>% View()
SEUNGW00LEE commented 1 year ago

data.R 파일은 이전과 동일하게 작성했는데 왜 반영이 안됐는지 아직 모르겠습니다! 다시 한번 확인해서 수정해놓도록 하겠습니다!

SEUNGW00LEE commented 1 year ago

18 과 같이 작성 후 확인해본 결과, 오늘까지 업로드한 데이터까지 총 80개 description 반영되는 것으로 확인됩니다!

스크린샷 2023-08-26 오후 6 17 24 스크린샷 2023-08-26 오후 6 17 38
YoungjunNa commented 1 year ago

아주 좋습니다 !