graph

https://matplotlib.org/ # plotting을 위한 패키지 임포트import matplotlib.pyplot as plt 자료 입력year = [1950, 1960, 1970, 1980, 1990, 2000, 2010]gdp = [300.2, 543.3, 1075.9, 2862.5, 5979.6, 10289.7, 14958.3] 그래프 출력# plot: 선 그래프 생성plt.plot(years, gdp, color = 'green', marker = 'o')plt.title('연도별 GDP', fontname='Gulim')plt.xlabel('Year')plt.ylabel('GDP(Billions of $)') # show: 그래프를 화면에 보여주는 기능plt.show() 출력 결과 ..
· R/R기초
Goalsggplot2 패키지를 사용한 그래프color, color _ as factor, shape _ as factor Notes # ggplot2 패키지를 사용한 그래프# grammar of graph ( 그래프 그리기 문법)install.packages(ggplot2)library(ggplot2)search() # ggplot2 패키지의 mpg 데이터 프레임 구조 확인str(mpg) # 자동차 배기량(displ)과 시내주행 연비(cty) 사이의 관계# 1) 그래프를 그릴 데이터(데이터 프레임), 좌표축 설정g
Codezoy
'graph' 태그의 글 목록