From 71484405fa4b76c7ad5acc65ca4d375d9109392d Mon Sep 17 00:00:00 2001 From: StefanTodoran Date: Thu, 5 Oct 2023 22:53:50 +0000 Subject: [PATCH] deploy: 1d0e7e5711decaa2f39042fd726fd1ebc3ff01a3 --- _sources/about_this_book/about_this_book.md | 2 +- about_this_book/about_this_book.html | 2 +- reports/3.6_randomForest_regression.log | 19 ++++++++++++------- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/_sources/about_this_book/about_this_book.md b/_sources/about_this_book/about_this_book.md index 0dda17f..10f7ccf 100644 --- a/_sources/about_this_book/about_this_book.md +++ b/_sources/about_this_book/about_this_book.md @@ -17,7 +17,7 @@ The course is intended to introduce Machine Learning in Geosciences, the basics Some chapters will include code sections which students should attempt to write on their own first before viewing the solution. The student version of this book automatically clears sections marked by the instructor as student response, and can be accessed via the link below. -[![Student Version](../img/student_version_badge.svg)](https://geo-smart.github.io/mlgeo/) +[![Student Version](../img/student_version_badge.svg)](https://geo-smart.github.io/mlgeo-book/) # Learning objectives diff --git a/about_this_book/about_this_book.html b/about_this_book/about_this_book.html index d2a0798..6874fdd 100644 --- a/about_this_book/about_this_book.html +++ b/about_this_book/about_this_book.html @@ -694,7 +694,7 @@

Overview

Student Version#

Some chapters will include code sections which students should attempt to write on their own first before viewing the solution. The student version of this book automatically clears sections marked by the instructor as student response, and can be accessed via the link below.

-

Student Version

+

Student Version

Learning objectives#

diff --git a/reports/3.6_randomForest_regression.log b/reports/3.6_randomForest_regression.log index 2b9e0bb..9923201 100644 --- a/reports/3.6_randomForest_regression.log +++ b/reports/3.6_randomForest_regression.log @@ -17,16 +17,21 @@ Traceback (most recent call last): raise CellExecutionError.from_cell_and_msg(cell, exec_reply_content) nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell: ------------------ -import wget -wget.download("https://docs.google.com/uc?export=download&id=1pko9oRmCllAxipZoa3aoztGZfPAD2iwj") +# Pandas is used for data manipulation +import pandas as pd +# Read in data and display first 5 rows +features = pd.read_csv('temps.csv') +features.head(5) ------------------ --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) -Input In [1], in () -----> 1 import wget - 2 wget.download("https://docs.google.com/uc?export=download&id=1pko9oRmCllAxipZoa3aoztGZfPAD2iwj") +Input In [2], in () + 1 # Pandas is used for data manipulation +----> 2 import pandas as pd + 3 # Read in data and display first 5 rows + 4 features = pd.read_csv('temps.csv') -ModuleNotFoundError: No module named 'wget' -ModuleNotFoundError: No module named 'wget' +ModuleNotFoundError: No module named 'pandas' +ModuleNotFoundError: No module named 'pandas'