All Questions
4 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 ...
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(...
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....
-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?