Skip to content

Commit

Permalink
Update 12-02
Browse files Browse the repository at this point in the history
  • Loading branch information
SamLau95 committed Dec 3, 2024
1 parent fd68eec commit 066ca23
Show file tree
Hide file tree
Showing 10 changed files with 417,253 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _modules/week-10.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ days:
events:
- name: LEC 19
type: lecture
title: Review, Conclusion
title: Model Fairness, Review, Conclusion
blank: resources/lectures/lec19/lec19-live.html
filled: resources/lectures/lec19/lec19.html
reading: '[Ch. 19.5](https://learningds.org/ch/19/class_dr.html)'
- date: '2024-12-05'
events:
Expand Down
386,773 changes: 386,773 additions & 0 deletions resources/lectures/lec19/data/loan_vars1.csv

Large diffs are not rendered by default.

76 changes: 76 additions & 0 deletions resources/lectures/lec19/dsc80_utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
"""
Imports and helpful functions that we use in DSC 80 lectures. Use `make
setup-lec` to copy this (and custom-rise-styles.css) to the lecture folders.
Usage:
from dsc80_utils import *
"""

from pathlib import Path
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from matplotlib_inline.backend_inline import set_matplotlib_formats
from IPython.display import display, IFrame, HTML

import plotly
import plotly.figure_factory as ff
import plotly.graph_objects as go
import plotly.express as px
from plotly.subplots import make_subplots
import plotly.io as pio

# DSC 80 preferred styles
pio.templates["dsc80"] = go.layout.Template(
layout=dict(
margin=dict(l=30, r=30, t=30, b=30),
autosize=True,
width=600,
height=400,
xaxis=dict(showgrid=True),
yaxis=dict(showgrid=True),
title=dict(x=0.5, xanchor="center"),
)
)
pio.templates.default = "simple_white+dsc80"

set_matplotlib_formats("svg")
sns.set_context("poster")
sns.set_style("whitegrid")
plt.rcParams["figure.figsize"] = (10, 5)

# display options for numpy and pandas
np.set_printoptions(threshold=20, precision=2, suppress=True)
pd.set_option("display.max_rows", 7)
pd.set_option("display.max_columns", 8)
pd.set_option("display.precision", 2)

# Use plotly as default plotting engine
pd.options.plotting.backend = "plotly"


def display_df(
df, rows=pd.options.display.max_rows, cols=pd.options.display.max_columns
):
"""Displays n rows and cols from df"""
with pd.option_context(
"display.max_rows", rows, "display.max_columns", cols
):
display(df)


def dfs_side_by_side(*dfs):
"""
Displays two or more dataframes side by side.
"""
display(
HTML(
f"""
<div style="display: flex; gap: 1rem;">
{''.join(df.to_html() for df in dfs)}
</div>
"""
)
)
22 changes: 22 additions & 0 deletions resources/lectures/lec19/imgs/ds-lifecycle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/lectures/lec19/imgs/parity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 066ca23

Please sign in to comment.