Important functionalities of Pandas in Python : Tricks and Features

Pandas is one of my favorite libraries in python. It's very useful to visualize the data in a clean structural manner. Nowadays Pandas is widely used in Data Science, Machine Learning and other areas. The functionality of Pandas cannot be covered by any other libraries so far. In this post, I'll cover some mainly used functionalities and tricks in Pandas. To start working with Pandas, Import the package pandas. The…

Predicting per capita income of the US using linear regression in Python

Python enables us to predict and analyze any given data using Linear regression. Linear Regression is one of the basic machine learning or statistical techniques created to solve complex problems. In Machine Learning or in Data Science regression is known to be one of the most crucial fields and there're many regression methods available today. Linear Regression is one of them. whereas, regression is used to find the relationship among…

How to get data from twitter using Tweepy in Python?

To start working on Python you need to have Python installed on your PC. If you haven't installed python. Go to the Python website and get it installed. After installing Python set up your twitter account if you don't have one already. Next, go to Developer Page and apply for the Developer Access, then fill the form and accept the developer agreement. You can create the developer account according to…

Getting Started with Django

Django is an open-source, high-level and free Web framework created using Python. It follows the Model View Template(MVT) architectural pattern. In this tutorial you'll learn to setup a Django 2.2 project from scratch. Why Django? Django is one of the best framework available today. It acts as a quick solution for web development and delivers high-quality code with better security. Django takes it very seriously and helps to avoid SQL injection,…