이 때 까지 출판한 논문들을 이용해서 Word Cloud를 생성해 보았다.
저전력 컴퓨팅을 주로 했지만 어느 순간 부터 모델링을 하다보니 기계학습 내용도 많이 공부하게 됬다.
스스로의 학문적 근간이 모호해지는 상황이다.
최종적으로 생성한 Word Cloud는 아래와 같다.
해당 코드는 아래의 필자의 Github에 업로드 했다.
https://github.com/leejaymin/WordCloud
Word Cloud from PDF using R
This project is to create Wrold Cloud from PDF file.
My code shows how a word cloud can be generated using the R
programming language on the basis of a given PDF document.
Used packages are as bellow:
- tm (text mining)
- wordcloud
- RColorBrewer (fancy colors in a word cloud)
Code strcture
- Loading the required libraries and setting inital parameters
- Reading the text in the PDF file
- Creating the text corpus
- Generating the word cloud. This result is the following:
- Anlyzing word frequency is as follow.
Reference
[1] Using R to create a Wrod Cloud from a PDF Document
[2] Basic Text mining in R
'AI > R Basic' 카테고리의 다른 글
Data를 그룹별로 요약 (Summarizing data) (0) | 2016.10.27 |
---|---|
리스트 데이터 프레임을 단일 큰 데이터 프레임으로 변환, identical (0) | 2016.10.10 |
빈도분석 표와 백분율 구하기 (0) | 2016.08.21 |
Vector 분할 (0) | 2016.08.21 |
테스트 주도의 개발을 위한 Unit Test in R (0) | 2016.08.19 |