Posts

The opening salvo: Python PANDAS Library PANDAS - Part 1   - read the doc What is Python's PANDAS:  Similar to  NumPy ,  Pandas  is one of the most widely used  python  libraries in data science and for data analysis.  It provides high-performance, easy to use structures and data analysis tools. Unlike  NumPy  library which provides objects for multi-dimensional arrays,  Pandas  provides in-memory 2d table object called Dataframe. In this blog I intend to share what I know about PANDA.. PANDAS is a complex yet easy to implement library system. What is a DATAFRAME:  Accounting to Databricks.com a DATAFRAME is " the most common Structured API and simply represents a table of data with rows and columns. The list of columns and the types in those columns the  schema . A simple analogy would be a spreadsheet with named columns.." A DATAFRAME can be assembled in different ways by loading Microsoft Excel(tm) spreadsheet...