-
Couldn't load subscription status.
- Fork 24
Home
earthgecko edited this page May 24, 2022
·
3 revisions
df is short for dataframe
| Python call | Pandas.jl call |
|---|---|
import pandas as pd |
using Pandas |
df = pd.read_csv('file_name') |
df = read_csv("file_name") |
pd.to_datetime(df['c']) |
to_datetime(df["c"]) |
df.set_index(index) |
set_index(df, index) |
df.columns |
columns(df) |
df.index |
index(df) |
df.drop("c") |
Pandas.drop(df, "c") |
df.copy(deep=False) |
Pandas.copy(df, deep=false) |