노출되는 이미지가 불편하시겠지만 양해를 구합니다. 노출, 클릭등에 관한 자료로 활용 중입니다.



RStudio로 Kospi지수 csv를 그래프(plot) 만들기



1. CSV Import

: Kospi지수를 아래 링크에서 다운로드후에 kospi.csv로 저장
( 자료 내용은 편집해서 날짜와 최종 지수와 최저 지수만 남겼다 )
 
: Import Dataset를 통해 로드한다.
( 옵션 : Delimeter-Comma, First Row as Names , Name - kospi )

: 로드되면, kospi라는 data에 할당 된다. (왼쪽 상단 )


2. 날짜열을 rdate로 지정하기

: 함수 As.Date() , https://www.r-bloggers.com/as-date-exercises/

> rdate <- as.Date(kospi$Date,"%yyyy-%m-%d")

: kospi변수내의 컬럼head를 지정하고, 포맷을 정의한다.



3. Plot 'Current Index'  

>plot(kospi$`Current Index`~rdate,type="l",col="red",axes=F)
: kospi변수내의 'Current Index'를 y축, rdate는 x축
: type="l", col="red", x-y축 Line없이 그리기  

: 그래프 외곽선 추가  - box()

: x축에 날짜 표시 하기

- axis(1, rdate, format(rdate,'%m/%d')


: 원본 Data 및 그래프

https://global.krx.co.kr/contents/GLB/05/0502/0502030101/GLB0502030101.jsp?idxCd=1001&addDataYn=&globalYn=#1be3686ec5cb98595cf6179ba66d7a8b=2


참고 자료

R시계열 분석

R Programming: Plotting time-series data (using data.frame)

코스피지수 예측 모델 개발 1편

코스피지수 다운로드


블로그 이미지

StartGuide

I want to share the basic to programming of each category and how to solve the error. This basic instruction can be extended further. And I have been worked in southeast Asia more than 3 years. And I want to have the chance to work another country.

,