I hereby claim:
- I am oxtay on github.
- I am okhtay (https://keybase.io/okhtay) on keybase.
- I have a public key ASCz_2iptfqQ6COTQYQUBaa3SiTF4eP-KHHZLXCFlcd6-wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#List unique values in a DataFrame column | |
pd.unique(df.column_name.ravel()) | |
#Convert Series datatype to numeric, getting rid of any non-numeric values | |
df['col'] = df['col'].astype(str).convert_objects(convert_numeric=True) | |
#Grab DataFrame rows where column has certain values | |
valuelist = ['value1', 'value2', 'value3'] | |
df = df[df.column.isin(value_list)] |
error: must supply either home or prefix/exec-prefix -- not both |