Skip to content
Snippets Groups Projects

Add master script

Merged David Fuhry requested to merge add-master-script into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -19,20 +19,20 @@ articles <- getData(use.cache = TRUE)
## Data processing
results <- lapply(articles, function(x) {
results <- lapply(articles, function(data) {
## Data cleaning
# cleaned.text <- someCleanFunctioN(x$Text)
# cleaned.text <- someCleanFunctioN(data$Text)
## Data preprocessing/annotating
# annotated.text <- annotationFunction(x$Text)
# annotated.text <- annotationFunction(data$Text)
## Extract information from Text
# someFact <- getFactFromTextFunctioN(annotated.text)
# someOtherFact <- getOtherFactFromText(x$Text)
# someOtherFact <- getOtherFactFromText(data$Text)
## Create Results
Loading