Displaying 1 result from an estimated 1 matches for "all_tick".
Did you mean:
all_time
2013 Nov 06
1
Multiple String word replacements: Performance Issue
...se=TRUE) #Remove line breaks
y<-do.call(gsub, arguments)
#Append Positive or Negative Emotion
arguments<-list(x=y)
y<-do.call(appendEmotion, arguments)
# Output
result<-list(
textclean=y,
first_ticker=first,
all_ticker=signal_words,
ticker_count=count)
return(result)
}
resultList<-mclapply(dataframe$text_column,preprocessText)
** end main code **
(The return would be a list, which I plan to convert to a data.frame. Don?t get that far though).
Before, I also tried to call...