Difference between revisions of "R: Package Pendukung Text Processing"

From OnnoWiki
Jump to navigation Jump to search
Line 1: Line 1:
  
 
  install.packages("dplyr")
 
  install.packages("dplyr")
 +
install.packages(tidyverse)
 +
install.packages(stringr)
 +
install.packages(tidytext)
  
 +
library(dplyr)
 +
library(tidyverse)      # data manipulation & plotting
 +
library(stringr)        # text cleaning and regular expressions
 +
library(tidytext)      # provides additional text mining functions
  
  

Revision as of 08:46, 31 October 2018

install.packages("dplyr")
install.packages(tidyverse)
install.packages(stringr)
install.packages(tidytext)
library(dplyr)
library(tidyverse)      # data manipulation & plotting
library(stringr)        # text cleaning and regular expressions
library(tidytext)       # provides additional text mining functions


Pranala Menarik