Skip to content
Snippets Groups Projects
Commit 3527f3bf authored by David Fuhry's avatar David Fuhry
Browse files

Variable renaming

parent 495d1fe4
No related branches found
No related tags found
1 merge request!7Add master script
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment