Skip to content

Instantly share code, notes, and snippets.

View carlleston's full-sized avatar

Anthony Carlleston de Lima carlleston

View GitHub Profile
df = pd.read_csv('df.csv', sep = ',')
df.head()
import sklearn.datasets as datasets
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
from sklearn.pipeline import Pipeline
from sklearn.ensemble import RandomForestRegressor
from sklearn.decomposition import PCA