Goals geom_col( ), reorder, xlab, ylab, geom_barggplot2 : cheat sheet, geom_col vs geom_bar빈도수 순서로 출력선 그래프, boxplot , 하나의 차트에서 여러 개의 boxplot 만들기ggthemes #ggplot2.tidyverse.org : ggplot2 홈페이지 # ggplot2를 이용한 여러가지 그래프search()library(dplyr) # 데이터를 가공/정제하는 패키지 # 자동차 구동방식(drv)별로 연비 차이?df_mpg= mpg %>% group_by(drv) %>% summarise(mean_cty=mean(cty))df_mpgdrv mean_cty 1 4 14.32 f 20.03 r 14.1 geom_col :#..
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
Goals데이터 프레임 생성, 헤더가 없는 csv 파일에서 데이터프레임 생성, Separation : 콤마( , ) 대신 콜론 ( : ) 사용, MS Excel 읽어서 데이터프레임 생성( readxl )Notes # 현재 작업 디렉토리(폴더) 확인>> getwd ( ) # 현재 작업 디렉토리 변경>> setwd ('c:/dev/lab-r') # ./data/csv_exam.csv 파일을 읽어서 데이터 프레임 생성 : read.csv('데이터 디렉토리') exam_csv = read.csv('data/csv_exam.csv') # 데이터 프레임의 내용을 확인> exam_csv id class math english science1 1 1 50 98 502 2 1 60 97 603 3 1 45 86 78 #..
GoalsR-Studio 초기 설정, 주석, 변수, SEQ, C ( ... ), 함수 도움창, getwd( ), setwd( )배열의 인덱스, 연산, 벡터와 스칼라함수, 필수/옵션 파라미터, 패키지, Search, Detach, Ls, Rm데이터 프레임, CSV 파일 읽기, 상대 경로와 절대 경로 NotesR-Studio 설치 후 옵션 설정. tools -> Global options... 1. General -> Default Working 2. Saving -> Default text encoding 3. Appearance -> font, fontsize, Editor theme 조절 Ctrl + Enter : 소스코드 실행 Console : 결과 출력Environment : 변수. 컴퓨터 메모리에..