The Absolute Beginner’s Guide to Pandas DataFrames
towardsdatascience.com·5d
Flag this post

background, learning Python for data analysis has been a bit challenging. The syntax is simpler — true. However, the language and terminology are completely different. In SQL, you’ll have to interact with databases, tables and columns. In Python, however, for data analysis, your bread and butter is going to be data structures.

Data structures in Python are like data storage objects. Python includes several built-in data structures, such as lists, tuples, sets, and dictionaries. All these are used to store and manipulate data. Some are mutable (lists) and some are not (tuples). To learn more about Python data structures, I highly recommend reading the book “Python for Data Analysis” by Wes McKinney. I just started reading it, and I think it’s stellar.

In this article, I…

Similar Posts

Loading similar posts...