Skip to content

Commit 430283f

Browse files
authored
Update analyze-us-census-data-with-scipy.mdx
1 parent 49ed60a commit 430283f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/analyze-us-census-data-with-scipy/analyze-us-census-data-with-scipy.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ Additionally, traditional A/B testing typically utilizes one of two methods: eit
140140

141141
For this tutorial, we'll be running t-tests.
142142

143+
143144
## Getting Started
144145

145146
To get started, you'll need the following [datasets](https://drive.google.com/drive/folders/1xO33dvJV_RySl77y2W-7lxIvBW7PUoEg?usp=sharing) and a copy of [this Google Colab notebook](https://colab.research.google.com/drive/1GWiNXPVuRTORqEBNFV7zpTGZD_yeprNt?usp=sharing).
@@ -165,6 +166,7 @@ Next, we'll load the CSV files to their own dataframes using pandas.
165166
c = ("/content/moved_same_state.csv")
166167
v = ("/content/moved_between_states.csv")
167168
```
169+
168170
```python
169171
control = pd.read_csv(c)
170172
variant = pd.read_csv(v)
@@ -173,6 +175,7 @@ variant = pd.read_csv(v)
173175
#variant.head()
174176
```
175177

178+
176179
## Let's Explore
177180

178181
Let's begin by manually creating an empty dataframe (table) based on each level of detail (County, State, Division, and Region) listed by the U.S. Census.

0 commit comments

Comments
 (0)