Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- XML Core
- 데이터포맷
- HTTP
- 반응형웹
- java annotation
- 웹프로그래밍
- Ajax
- 카카오APi
- 데이터규정
- 자바
- 자바스크립트
- java컴파일
- Session
- JSP
- 공문서작성규정
- 데이터베이스
- Database
- JSTL
- JavaScript
- XML DOM
- Request/Response Header
- 스프링프레임워크
- Multipart
- Java
- 프로그래밍용어
- 세션
- xml
- Servlet
- 데이터문서포맷
- xml mapping
Archives
- Today
- Total
KyungHwan's etc.
R 기본 문법 연습 2 본문
data(iris)
head(iris)
iris3
newRow<-data.frame(Sepal.Length=3.0, Sepal.Width=3.2, Petal.Length=1.6, Petal.Width=0.3, Species= "newsetosa" )
iris<-rbind(iris,newRow)
iris
dim(iris)
newcol=1:151
iris_a<-cbind(iris,newcol)
iris_a
subset(iris,select=Species,subset=(Petal.Length>1.7))
subset(iris,select=c(Sepal.Length,Petal.Length,Species),subset=c(Sepal.Width==3.0 & Petal.Width==0.2))
head(with(iris,Species))
name<-c("Moe","Larry","Curly","Harry")
year.born<-c(1887,1902,1903,1964)
place.born<-c("BensonHurst", "Philadelphia", "Brooklyn", "Moscow")
born<-data.frame(name,year.born,place.born)
born
name<-c("Curly","Moe","Larry")
year.died<-c(1952,1975,1975)
died<-data.frame(name,year.died)
died
merge(born,died,by="name")
as.numeric("3.14")
as.integer(3.14)
as.numeric("foo")
as.character(101)
as.numeric(FALSE)
as.numeric(TRUE)
x<-3
as.data.frame(x) # dataframe으로 형 변환
as.list(x) # list로 형 변환
as.matrix(x) #matrix로 형 변환
as.vector(x) #vector 로 형 변환
paste("Everybody","loves","cats.")
paste("Everybody","loves","cats.",sep="-")
paste("Everybody","loves","cats.",sep="")
substr("BigDataAnalysis",1,4)
ss<-c("Moe","Larry","Curly")
substr(ss,1,3)
Sys.Date()
as.Date("2017-09-08")
as.Date("09/08/2017")
as.Date("09/08/2017",format="%m/%d/%Y")
format(Sys.Date())
as.character(Sys.Date())
format(Sys.Date(),format="%m/%d/%Y")
format(Sys.Date(),'%a')
format(Sys.Date(),'%b')
format(Sys.Date(),'%B')
format(Sys.Date(),'%d')
format(Sys.Date(),'%m')
format(Sys.Date(),'%y')
format(Sys.Date(),'%Y')
data(iris)
getwd()
setwd("c:/download/r_working")
write.csv(iris,file="iris.csv")
save(iris,file="iris.Rdata")
load("iris.Rdata")
read.csv("iris.csv")
'R' 카테고리의 다른 글
R 웹 크롤링 or 워드클라우드 (0) | 2018.10.17 |
---|---|
R을 이용한 차트 그리기 (0) | 2018.10.16 |
R 기본 데이터형 (0) | 2018.10.14 |
R 기본 문법 연습 3 (0) | 2018.10.14 |
R 기본 문법 연습 1 (0) | 2018.10.14 |
Comments