R로 간단한 그래프 표현 시 참고할만한 사이트

2020. 1. 29. 00:10Data Science/Cases(사례)

간단한 그래프에 대한 전반적인 설명은 아래 사이트 참조하면 좋을 듯 하다.

 

Producing Simple Graphs with R

 

Producing Simple Graphs with R

Let's add a title, a line to connect the points, and some color: cars <- c(1, 3, 6, 4, 9) plot(cars, type="o", col="blue") title(main="Autos", col.main="red", font.main=4) Now let's add a red line for trucks and specify the y-axis range directly so it will

sites.harding.edu

 

  1. Line Charts(라인 차트)
  2. Bar Charts(바 차트)
  3. Histograms(히스토그램)
  4. Pie Charts(파이차트)
  5. Dotcharts(점도포)
  6. Misc(기타)

 

(참조: [Coursera]Data Science Specialization 내 Exploratory Data Analysis)