December 2017
Beginner to intermediate
410 pages
12h 45m
English
Libraries provide additional functionality in an organized and packaged way. We mainly work with the Pandas library throughout this book, but there are times where we will import other libraries. You will see many different ways to import a library. The most basic way is to simply import the library by its name.
import pandas
When we import a library, we can use its functions within Pandas using dot notation.
pandas.read_csv('../data/concat_1.csv')
Python gives us a way to alias libraries. This allows us to use an abbreviation for longer library names. To do so, we specify the alias after the as statement. ...