Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 912 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 912 Bytes

Python_for_DataScience_AI

Python for Data Science, AI & Development by IBM Steps involved in ML pipeline image Scikit Learn steps to predict image

Types of Regression model image

image

Simple Regression model analysis :

Step 1: Reading Data from website in csv format

-> Ways to read data from http

1. pyfetch

  from pyodide.http import pyfetch
  resp = await pyfetch(url)
   if resp.status == 200:
       with open(filename, "wb") as f:
           f.write(await resp.bytes())

  df = pd.read_csv("FuelConsumption.csv")