Learn Data Analysis with Python by A. J. Henley & Dave Wolf
Author:A. J. Henley & Dave Wolf
Language: eng
Format: epub
Publisher: Apress, Berkeley, CA
Method 1: Convert single column to hold numeric variables (Listing 3-47).
def score_to_numeric(x):
if x=='female':
return 1
if x=='male':
return 0
Listing 3-47Function to Convert Gender to Number
Now, run that method on your column (Listing 3-48).
df['gender_val'] = df['gender'].apply(score_to_numeric)
df.tail()
Listing 3-48Apply score_to_numeric Function to Gender
Method 2: Create individual Boolean columns (Listing 3-49).
df_gender = pd.get_dummies(df['gender'])
df_gender.tail()
Listing 3-49Create Boolean Columns Based on Gender Column
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
The Brazilian Economy since the Great Financial Crisis of 20072008 by Philip Arestis Carolina Troncoso Baltar & Daniela Magalhães Prates(100674)
International Integration of the Brazilian Economy by Elias C. Grivoyannis(70694)
The Art of Coaching by Elena Aguilar(52093)
Flexible Working by Dale Gemma;(23199)
How to Stop Living Paycheck to Paycheck by Avery Breyer(19544)
The Acquirer's Multiple: How the Billionaire Contrarians of Deep Value Beat the Market by Tobias Carlisle(12074)
Thinking, Fast and Slow by Kahneman Daniel(11699)
The Radium Girls by Kate Moore(11575)
The Art of Thinking Clearly by Rolf Dobelli(9820)
Hit Refresh by Satya Nadella(8826)
The Compound Effect by Darren Hardy(8445)
Atomic Habits: Tiny Changes, Remarkable Results by James Clear(7995)
Tools of Titans by Timothy Ferriss(7746)
Turbulence by E. J. Noyes(7668)
Change Your Questions, Change Your Life by Marilee Adams(7326)
Nudge - Improving Decisions about Health, Wealth, and Happiness by Thaler Sunstein(7204)
A Court of Wings and Ruin by Sarah J. Maas(7166)
How to Be a Bawse: A Guide to Conquering Life by Lilly Singh(7138)
Win Bigly by Scott Adams(6795)
