This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Replaces Male -> 0 | |
df['sex'] = df['sex'].replace('Male', 0) | |
# Replaces Female -> 1 | |
df['sex'] = df['sex'].replace('Female', 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
df = pd.read_csv('data.csv') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
svn merge -rREV1:REV2 BRANCH TRUNK | |
REV1 : Primeira Revisão | |
REV2 : Última Revisão | |
BRANCH : Diretório do Branch | |
TRUNK : Diretório do Trunk |
NewerOlder