Posts

Setup

Image
            Let's talk about some of the useful python packages for this let's assume you have basic knowledge of Python or You know what python is and how it works. So packages are a bunch of python code written in python to achieve a specific task. In this section, we just talked about setup and in another section, you can learn these different packages Pandas Numpy Before this, we have to have any IDE or we can say text editors in our system to code, there are many famous IDE present for coding such as Atom, Visual Studio Code, Sublime Text, Jupyter Notebook etc but I highly recommend you to use Jupyter Notebook, because it is very easy to understand and we can see output line by line which make it different. So let's Install Jupyter Notebook into our system Installing Jupyter:                Jupyter Notebook is a third-party library. We can install Jupyter Notebook by PIP so Please install Jupyter Notebo...

All About Pandas

Image
all_about_pandas First go though the Setup and click download below to download resource for this section Download Resources P A N D A S ¶ Lets learn about Pandas, This package basically use for file processing and manipulation, Python also have inbuild file processing methods but Pandas did this process very simple and efficient and handy way so lets deep dive with Pandas. So lets look at what we have in our directory first we are going to open this different type of files using pandas and try different thing on it. In [1]: import os os . listdir () Out[1]: ['.ipynb_checkpoints', 'all_about_pandas.ipynb', 'exercise.ipynb', 'supermarkets-commas.txt', 'supermarkets-commas_noheader.txt', 'supermarkets-semi-colons.txt', 'supermarkets.csv', 'supermarkets.json', 'supe...