Skip to content

Instantly share code, notes, and snippets.

View sayantanim's full-sized avatar
📉
Hacking Einstein Analytics

Sayantani Mitra sayantanim

📉
Hacking Einstein Analytics
View GitHub Profile
@annacrotty
annacrotty / Salesforce Contact Update and Create.py
Created September 25, 2015 20:24
My first pandas python project. Comments and suggestions definitely welcome. More info at https://medium.com/@AnnaCrotty2/using-pandas-and-python-to-import-data-into-salesforce-118f39cd718b
# coding: utf-8
# In[297]:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
pd.options.display.max_rows = 2
@bsweger
bsweger / useful_pandas_snippets.md
Last active April 19, 2024 18:04
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)