python 2.7 - Import only library essentials from Pandas -
i using pandas python program. importing pandas slows down load-up bit, wondering if there's way import bare essentials doing from pandas import x
.
the functions using are:
import pandas pd df = pd.read_csv df[""].apply() df.to_csv("file.csv")
Comments
Post a Comment