Views
No views yet
data subdirectory of this repository. The dataset consists of 5 examples, each with 35 features and a target variable. To download the dataset, simply clone this repository and navigate to the data subdirectory:1import pandas as pd
2
3df = pd.read_csv("data/example_data.txt", delimiter="\t")
4X = df.drop("DroughtExperienced", axis=1)
5y = df["DroughtExperienced"]