├── LICENSE ├── README.md ├── section 1 ├── hello └── hello.go ├── section 2 ├── set.go ├── set_test.go ├── tweets.csv ├── tweets.json ├── twitter.go ├── twitter_csv.go ├── twitter_data_clean.go └── twitter_json.go ├── section 3 ├── imdb_train_trees.csv ├── naive_bayes.go ├── naive_bayes_crossval.go ├── nlp.go ├── prepare_data.go ├── random_forest.go └── trees.go ├── section 4 ├── cosine_sim.go ├── ml-latest-small │ ├── README.txt │ ├── links.csv │ ├── movies.csv │ ├── ratings.csv │ └── tags.csv ├── recommender.go ├── recommender_cf.go └── recommender_hybrid.go └── section 5 ├── AAPL_training_data.csv ├── amznvsaapl.jpg ├── plots.go ├── regression.go ├── set_removed.go ├── stock_forecaster.go └── stock_forecaster_evaluate.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/README.md -------------------------------------------------------------------------------- /section 1/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 1/hello -------------------------------------------------------------------------------- /section 1/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 1/hello.go -------------------------------------------------------------------------------- /section 2/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/set.go -------------------------------------------------------------------------------- /section 2/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/set_test.go -------------------------------------------------------------------------------- /section 2/tweets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/tweets.csv -------------------------------------------------------------------------------- /section 2/tweets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/tweets.json -------------------------------------------------------------------------------- /section 2/twitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/twitter.go -------------------------------------------------------------------------------- /section 2/twitter_csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/twitter_csv.go -------------------------------------------------------------------------------- /section 2/twitter_data_clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/twitter_data_clean.go -------------------------------------------------------------------------------- /section 2/twitter_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 2/twitter_json.go -------------------------------------------------------------------------------- /section 3/imdb_train_trees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 3/imdb_train_trees.csv -------------------------------------------------------------------------------- /section 3/naive_bayes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 3/naive_bayes.go -------------------------------------------------------------------------------- /section 3/naive_bayes_crossval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 3/naive_bayes_crossval.go -------------------------------------------------------------------------------- /section 3/nlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 3/nlp.go -------------------------------------------------------------------------------- /section 3/prepare_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 3/prepare_data.go -------------------------------------------------------------------------------- /section 3/random_forest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 3/random_forest.go -------------------------------------------------------------------------------- /section 3/trees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 3/trees.go -------------------------------------------------------------------------------- /section 4/cosine_sim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/cosine_sim.go -------------------------------------------------------------------------------- /section 4/ml-latest-small/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/ml-latest-small/README.txt -------------------------------------------------------------------------------- /section 4/ml-latest-small/links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/ml-latest-small/links.csv -------------------------------------------------------------------------------- /section 4/ml-latest-small/movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/ml-latest-small/movies.csv -------------------------------------------------------------------------------- /section 4/ml-latest-small/ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/ml-latest-small/ratings.csv -------------------------------------------------------------------------------- /section 4/ml-latest-small/tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/ml-latest-small/tags.csv -------------------------------------------------------------------------------- /section 4/recommender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/recommender.go -------------------------------------------------------------------------------- /section 4/recommender_cf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/recommender_cf.go -------------------------------------------------------------------------------- /section 4/recommender_hybrid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 4/recommender_hybrid.go -------------------------------------------------------------------------------- /section 5/AAPL_training_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 5/AAPL_training_data.csv -------------------------------------------------------------------------------- /section 5/amznvsaapl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 5/amznvsaapl.jpg -------------------------------------------------------------------------------- /section 5/plots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 5/plots.go -------------------------------------------------------------------------------- /section 5/regression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 5/regression.go -------------------------------------------------------------------------------- /section 5/set_removed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 5/set_removed.go -------------------------------------------------------------------------------- /section 5/stock_forecaster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 5/stock_forecaster.go -------------------------------------------------------------------------------- /section 5/stock_forecaster_evaluate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Hands-on-Fundamentals-of-Data-Science-with-Go/HEAD/section 5/stock_forecaster_evaluate.go --------------------------------------------------------------------------------