Beta
Table of Contents
The outline of your notebook will show up here. You can include headings in any text cell by starting a line with #
, ##
, ###
, etc., depending on the desired title hierarchy.
import pandas as pd
df = pd.read_csv('unicorns.csv')
desc = "Number of rows:"
desc + df.shape[0]
h = 'jkjjj'
print('Hi'h)
from skilearn import KNN
from sklearn import KNN
from sklearn.neighbors import KNeighborsClassifier
model = KNeighborsClassifier()
typeof(model)