Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/tutorials/oregon.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Next, we prepare the data for the DTE analysis. This involves creating treatment

# Create strata based on household size
df.rename(columns={'numhh_list': 'strata'}, inplace=True)
df['strata'] = df['strata'].replace({
df['strata'] = df['strata'].astype(str).replace({
'signed self up + 1 additional person': 'signed self up + others',
'signed self up + 2 additional people': 'signed self up + others'
})
Expand Down