AmitDiwan has Published 10744 Articles

How can ‘implot’ function be used to fit values to data if one of the variables is a discrete value in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:59:15

219 Views

When regression models are being built, multicollinearity is checked for. This is because we need to understand the correlation present between all different combinations of continuous variables. If multicollinearity exists between the variables, we have to make sure that it is removed from the data.This is where functions ‘regpot’ and ... Read More

How can a linear relationship be visualized using Seaborn in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:58:09

182 Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high-level interface.When regression models are being built, multicollinearity is checked for. This is because we need to understand the correlation present between all different combinations of continuous variables. If multicollinearity exists between the variables, ... Read More

How can FacetGrid be used to visualize data in Python Seaborn Library?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:57:07

249 Views

The barplot function establishes the relationship between a categorical variable and a continuous variable. Data is represented in the form of rectangular bars where the length of the bar indicates the proportion of data in that specific category.Point plots are similar to bar plots but instead of representing the fill ... Read More

Explain how a violin plot can be visualized using factorplot function in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:56:01

120 Views

The barplot function establishes the relationship between a categorical variable and a continuous variable. Data is represented in the form of rectangular bars where the length of the bar indicates the proportion of data in that specific category.Point plots are similar to bar plots but instead of representing the fill ... Read More

How can Seaborn library be used to display categorical scatter plots in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:54:44

178 Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high level interface.General scatter plots, histograms, etc can’t be used when the variables that need to be worked with are categorical in nature. This is when categorical scatterplots need to be used.Plots such as ... Read More

What is a series data structure in Pandas library in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:53:20

925 Views

Series is a one-dimensional, labelled data structure present in the Pandas library. The axis label is collectively known as index.Series structure can store any type of data such as integer, float, string, python objects, and so on. It can be created using an array, a dictionary or a constant value.Let ... Read More

How can Deep Learning be used for facial recognition in Machine Learning?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:51:40

271 Views

Face recognition is the task of identifying and verifying people present in a photograph based on their face. This is a trivial task for humans, even if the lights are varying or when faces change due to age or they are obstructed with accessories, facial hair and so on.But it ... Read More

What are layers in a Neural Network with respect to Deep Learning in Machine Learning?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:50:51

644 Views

A neural network can contains any number of neurons. These neurons are organized in the form of interconnected layers. The input layer can be used to represent the dataset and the initial conditions on the data.For example, suppose the input is a grayscale image, the output of every neuron in ... Read More

How can data that has multiple variables be visualized using Seaborn in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:49:44

297 Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high level interface. In real-time situations, dataset contains many variables. Sometimes, it may be required to analyse the relationship of every variable with every other variable in the dataset. In such situations, bivariate distribution ... Read More

How Seaborn library used to display a kernel density estimation plot (joinplot) in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:48:33

212 Views

Seaborn is a library that helps in visualizing data. It comes with customized themes and a high level interface.Kernel Density Estimation, also known as KDE is a method in which the probability density function of a continuous random variable can be estimated. This method is used for the analysis of ... Read More

Advertisements