AmitDiwan has Published 10740 Articles

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

AmitDiwan

AmitDiwan

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

205 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

291 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

146 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

201 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

967 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

308 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

679 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

318 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

231 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

How can scikit-learn be used to convert an image from RGB to grayscale in Python?

AmitDiwan

AmitDiwan

Updated on 11-Dec-2020 10:47:34

2K+ Views

Scikit-learn, commonly known as sklearn is a library in Python that is used for the purpose of implementing machine learning algorithms.Conversion of an image from one color space to another is usually used so that the newly achieved color space can prove as a better input to perform other operations ... Read More

Advertisements