diff --git a/docs/eda/eda.html b/docs/eda/eda.html index 776b993e..3cbc95c7 100644 --- a/docs/eda/eda.html +++ b/docs/eda/eda.html @@ -319,7 +319,7 @@

Data Cleaning and EDA

-
+
Code
import numpy as np
@@ -384,7 +384,7 @@ 

5.1.1.1 CSV

CSVs, which stand for Comma-Separated Values, are a common tabular data format. In the past two pandas lectures, we briefly touched on the idea of file format: the way data is encoded in a file for storage. Specifically, our elections and babynames datasets were stored and loaded as CSVs:

-
+
pd.read_csv("data/elections.csv").head(5)
@@ -455,7 +455,7 @@