author: KFollmer date: Oct. 15th, 2016 autosize: true
Request: Build a text prediction web application
Requirements - Timely (< 1 minute response time) - Predicts the subsequent word of a user-inputed phrase - Hosted as a Shiny App
R Packages
library(shiny)
library(quanteda)
library(stringr)
library(data.table)
library(dplyr)
Data Source Used: [Capstone Dataset: A large sampling of language data extracted from twitter, blog entries and news sources] (https://d396qusza40orc.cloudfront.net/dsscapstone/dataset/Coursera-SwiftKey.zip)
There is a tradeoff between performance and acurracy with this tool. Performance was prioritized over formatting
Improvements for Next Version