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
- R 개요
- Names
- 스크래핑
- 정규표현식
- TXT
- seq
- 데이터 입출력
- CSV
- data frame
- Crawling
- R 기초
- 데이터 타입의 우선순위
- Data Structure
- length
- working directory
- :
- 문자열처리
- ROTTEN TOMATOES
- vector 연산
- 연습문제
- c()
- 데이터 타입
- stringr
- REP
- 변수 선언
- scraping
- 네이버 영화 댓글
- vector 비교
- 함수
- factor
Archives
- Today
- Total
목록Package (1)
study blog
Package
Package # package 설치 Install.packages(“ggplot2”) # 설치된 package 메모리에 로드하기 – library, require library(“ggplot2”) library(ggplot2) require(ggplot2) # 설치된 package 삭제 remove.packages(“ggplot2”) # package 설치된 폴더 경로 알아보기 .libPaths() #package 설치 경로를 변경하고 싶을 때 .libPaths(“C:/R/lib") # package에 대한 정보, 사용법 알고 싶을 때 help(qplot) example(qplot) ?qplot # 현재 working directory 알아내기 getwd() # working directory 설정 s..
R/1. R 기초
2020. 1. 6. 18:36