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