Skip to content
Snippets Groups Projects
Commit a9f0f845 authored by shawk masboob's avatar shawk masboob
Browse files

deleted some lines from script

parent b88cb70f
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
# coding: utf-8
# # <center>Stub Functions and Automatic Documentation</center>
#
# <img src="https://pdoc3.github.io/pdoc/logo.png" width=30% alt="Sphinx logo">
# In[1]:
from sklearn import datasets
def dataload(): def dataload():
""" """
upload toy datasets from scikit-learn upload toy datasets from scikit-learn
...@@ -73,34 +61,4 @@ def accuracy_metrics(fit, MSE): ...@@ -73,34 +61,4 @@ def accuracy_metrics(fit, MSE):
d['BIC'] = None d['BIC'] = None
d['PRESS'] = None d['PRESS'] = None
d['Cp']= None d['Cp']= None
return d return d
\ No newline at end of file
# In[3]:
# test docstring
help(accuracy_metrics)
# In[ ]:
# test code
file_name = 'data.csv'
a = datafetch(file_name)
print(a)
b = descriptive_statistic(a)
print(b)
c = model_selection(a)
print(c)
d = MSE_fit(c)
print(d)
print(accuracy_metrics(c, d))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment