
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Nizamuddin Siddiqui has Published 2307 Articles

Nizamuddin Siddiqui
278 Views
To define points outside the R data frame and draw them in ggplot2 graph, we can follow the below step −First of all, create a data frameThen, create the scatterplot using geom_point function of ggplot2 package.Create the scatterplot with data outside data frame using data.frame inside geom_point.Create the data frameLet's ... Read More

Nizamuddin Siddiqui
227 Views
To create a ggplot2 graph in R without showing values, we can follow the below steps −First of all, create a data frame.Then, create the graph using ggplot2.Create the graph using ggplot2 without providing the function for the plot.Create the data frameLet's create a data frame as shown below − Live ... Read More

Nizamuddin Siddiqui
368 Views
To delete lines after creating a line chart with points in base R we would need to create the points chart only, therefore, we can follow the below steps −First of all, create two vectors and create the line chart with points.Now, again create the line chart but without pointsCreate ... Read More

Nizamuddin Siddiqui
103 Views
To create facetted scatterplot with scale of X-axis based on the numerical values corresponding to grouping column in R, we can follow the below steps −First of all, create a data frame having at least one grouping column and two numerical columns.Create the facetted scatterplot based on the grouping column.Create ... Read More

Nizamuddin Siddiqui
460 Views
To create NA column for a contingency table in R, we can follow the below steps −First of all, create a data frame with two columns having some NA values.Create a contingency table for two columns.Create the same table using useNA.Create the data frameLet's create a data frame as shown ... Read More

Nizamuddin Siddiqui
1K+ Views
To find the confusion matrix for linear discriminant analysis in R, we can follow the below steps −First of all, create a data frame.Create new features using linear discriminant analysis.Find the confusion matrix for linear discriminant analysis using table and predict function.Create the data frameLet's create a data frame as ... Read More

Nizamuddin Siddiqui
173 Views
To apply different function to grouping values in an R data frame, we can follow the below steps −First of all, create a data frame.Then, use ifelse function to apply different function to grouping values.Create the data frameLet's create a data frame as shown below − Live Demox

Nizamuddin Siddiqui
767 Views
To find the starting position for consecutive values given the length of consecutive values in an R vector, we can follow the below steps −First of all, create a vector with duplicated values.Find the run length.Create a vector with FALSE of vector size.Find the starting position by setting running length ... Read More

Nizamuddin Siddiqui
966 Views
To find the unique elements in multiple vectors, we can follow the below steps −First of all, create a number of vectors.Use setdiff function to find the common elements in all the vectors.Create the vectorsLet’s create a number of vectors as shown below − Live Demox

Nizamuddin Siddiqui
878 Views
To find the common elements in multiple vectors, we can follow the below steps −First of all, create a number of vectors.Use intersect function to find the common elements in all the vectors.Create the vectorsLet’s create a number of vectors as shown below − Live Demox