Skip to content

Instantly share code, notes, and snippets.

View brt-h's full-sized avatar

Robert Hyman brt-h

View GitHub Profile
@brt-h
brt-h / ML0101EN-Reg-NonLinearRegression-py-v1.ipynb
Created August 14, 2021 22:07
Machine Learning with Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / ML0101EN-Reg-Polynomial-Regression-Co2.ipynb
Created August 14, 2021 19:32
Machine Learning with Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / 4.8_Flight_Delay_Time_Statistics_Dashboard.py
Created August 12, 2021 01:59
Data Visualization with Python
# Console commands used
# $ pip3 install pandas dash # Make pandas and dash availible to your environment
# $ python3 flight_delay.py # Run the application
# Import required libraries
import pandas as pd
# import plotly.graph_objects as go
# above line commented out, as instructor included it by mistake
import plotly.express as px
import dash
@brt-h
brt-h / 4.7_Dash_Interactivity.ipynb
Created August 11, 2021 23:56
Data Visualization with Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / dash_basics.py
Created August 9, 2021 06:25
Data Visualization with Python
# Import required packages
import pandas as pd
import plotly.express as px
import dash
import dash_html_components as html
import dash_core_components as dcc
# Read the airline data into pandas dataframe
airline_data = pd.read_csv('https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-DV0101EN-SkillsNetwork/Data%20Files/airline_data.csv',
encoding = "ISO-8859-1",
@brt-h
brt-h / 4.3_Plotly_Basics.ipynb
Created August 9, 2021 06:08
Data Visualization with Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.