(First published by datascience.com) Data science, machine learning (ML) and artificial intelligence (AI) are relatively new endeavors for enterprise-level business. Many companies are batch training as well as batch scoring ML models. Predictions are stored in a database to be retrieved either by applications or humans. However, real-time training on…
Category: Data Science
Travel Industry Must Outgrow Its Past to Thrive in an AI World
The airline industry was at the forefront of many of the significant innovations of the last century. Besides for all the advances related directly to aviation, airlines were also pioneering in developing computer systems that could be accessed around the globe to book and reserve airline tickets. Airlines also established…
Function in R for Word and Line Count Table
Here I present a new function I created to find the count of lines and words in a text document and return them in the form of a table. It uses the wc “qdap” package in R as well as base R functions sum, nrow, as.numeric, as.data.frame and cbind. The Problem:…