
구글 트렌드 자료는 아래와 같이 정의된다. 구글에 검색 요청이 들어왔던 자료를 정규화 시켜 놓은 것이다. FAQ about Google Trends data Google Trends provides access to a largely unfiltered sample of actual search requests made to Google. It’s anonymized (no one is personally identified), categorized (determining the topic for a search query) and aggregated (grouped together). This allows us to display interest in a particular topic from arou..

R에서 google map을 이용하여 신규 커피집을 표시할 수 있다. 먼저 라이브러리 ggmap 을 로드하고, register_google() 함수를 이용하여 발급받은 API를 등록한다. 구글에서 검색해서 개발자로 등록하고, 신용카드 정보 넣으면 API 키를 준다. library('ggmap') register_google(key='구글API') 공공데이터 data.go.kr 사이트에 가서 소상공인진흥공단에서 제공한 파일 중 하나를 다운 받았다. https://www.data.go.kr/dataset/15012005/fileData.do 공공데이터포털 국가에서 보유하고 있는 다양한 데이터를『공공데이터의 제공 및 이용 활성화에 관한 법률(제11956호)』에 따라 개방하여 국민들이 보다 쉽고 용이하게 공유•..

여기에 나와있는 코드를 약간 변형하여 시계열에 마지막 값을 표시하는 것입니다. AER 패키지에 있는 Grundfeld 자료를 불러들입니다. library(tidyverse) library(dplyr) library(AER) data("Grunfeld") a % top_n(1, year) %>% pull(value) ggplot의 보조축을 이용하여 끝 값을 표시하고, 약간의 분식을 하면 아래와 같은 그림을 얻을 수가 있습니다. a %>% select(year, value, firm) %>% ggplot(aes(x = year,y = value,color = firm)) + geom_line() + scale_y_continuous(sec.axis = sec_axis(~ ., breaks = a_ends))..
https://youtu.be/7-WxiEPXqx4