Question
data = {'a':1 , 'b':2 , 'c':3 ,'d':4} import pandas as pd series = pd.Series(data) dummy = series.copy(deep=True) print(dummy) the above code is to make a copy of series what happens when argument deep is set to False?
in progress 0
4 years 1 Answer 777 views Member

Question
A linear model tends to have a training error of 3% and a testing error of 20% is the model under fitted or overfitted?
in progress 0
4 years 1 Answer 434 views Member

Question
A trained logistic model represents an equation as 1/1+exp(-(c+a0x0+a1x1+a2x2) how many predictors are used to create this model?
in progress 0
4 years 1 Answer 505 views Member

Question
uh = urllib.request.urlopen(url, context=ctx) find out which library module is necessary to import in the python code to execute the above line of code to open an url.  
solved 0
4 years 1 Answer 662 views Member