Skip to content
earthgecko edited this page May 24, 2022 · 3 revisions

Python function call and Pandas.jl call Mapping Table

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)
Clone this wiki locally