Skip to main content

All Questions

0 votes
1 answer
69 views

Plotting a simple linear regression model goes wrong

I'd like to create a linear regression model that shows a positive correlation between BMI and Disease risk (a quantitative measure of disease one year after baseline). The dataset is the same one ...
H.A's user avatar
  • 25
1 vote
1 answer
11k views

ImportError: DLL load failed: The specified procedure could not be found

I am using Jupyter to execute the below code but getting the error import pandas as pd from sklearn.tree import DecisionTreeClassifier music_data = pd.read_csv('music.csv') X = music_data.drop(...
Rajesh's user avatar
  • 61
0 votes
1 answer
2k views

I keep getting AttributeError in RandomSearchCV

x_tu = data_cls_tu.iloc[:,1:].values y_tu = data_cls_tu.iloc[:,0].values classifier = DecisionTreeClassifier() parameters = [{"max_depth": [3,None], "min_samples_leaf": np.random....
Jason Kim's user avatar
-2 votes
1 answer
853 views

scikit learn on jupyter notebook [closed]

I tried to run something on jupyter notebook and I got this problem. does anyone know how to solve it?
Dor Lasri's user avatar