R 기초; 입력 # 파일 읽기 read.csv(file="product.csv") # 도움말 보기 ?read.csv read.csv(file="product-with-no-header.csv", header=FALSE) read.table(file="product.txt") read.table(file="product.txt", header=TRUE) read.table(file="product-colon.txt", header=TRUE, sep=":") read.table(file="product-mssing.txt", header=TRUE) read.table(file="product-missing.txt", header=TRUE, na.strings=".") read.fwf(file= "produc.....
원문 링크 : R 기초; 입력