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 |
Tags
- 문자열처리
- 변수 선언
- R 기초
- c()
- length
- Data Structure
- data frame
- scraping
- seq
- vector 연산
- stringr
- CSV
- R 개요
- Crawling
- Names
- TXT
- 정규표현식
- vector 비교
- 데이터 타입
- REP
- 연습문제
- working directory
- factor
- 네이버 영화 댓글
- :
- 스크래핑
- 데이터 입출력
- ROTTEN TOMATOES
- 데이터 타입의 우선순위
- 함수
Archives
- Today
- Total
목록working directory (1)
study blog

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