
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
484 Views
To display axes ticks and labels inside the plot using ggplot2 in R, we can follow the below steps −First of all, create a data frame.Then, create a plot using ggplot2.After that create the same plot with theme function to change the position of axes ticks and labels.Create the data ... Read More

Nizamuddin Siddiqui
138 Views
To divide the row values by row variance in R’s data.table object, we can follow the below steps −First of all, create a data.table object.Then, use apply function to divide the data.table object row values by row variance.Create the data.table objectLet’s create a data.table object as shown below −library(data.table) xRead More

Nizamuddin Siddiqui
173 Views
To divide matrix row values by row variance in R, we can follow the below steps −First of all, create a matrix.Then, use apply function to divide the matrix row values by row variance.Create the matrixLet's create a matrix as shown below − Live DemoM

Nizamuddin Siddiqui
207 Views
To divide data frame row values by row variance R, we can follow the below steps −First of all, create a data frame.Then, use apply function to divide the data frame row values by row variance.Create the data frameLet's create a data frame as shown below − Live DemoxRead More

Nizamuddin Siddiqui
371 Views
To divide data frame row values by row maximum excluding 0 in R, we can follow the below steps −First of all, create a data frame.Then, use apply function and if else function to divide the data frame row values by row maximum excluding 0.Create the data frameLet's create a ... Read More

Nizamuddin Siddiqui
295 Views
To divide matrix row values by row maximum excluding 0 in R, we can follow the below steps −First of all, create a matrix.Then, use apply function and if else function to divide the matrix row values by row maximum excluding 0.Create the matrixLet's create a matrix as shown below ... Read More

Nizamuddin Siddiqui
296 Views
To divide the data frame row values by row maximum in R, we can follow the below steps −First of all, create a data frame.Then, use apply function to divide the data frame row values by row maximum.Create the data frameLet's create a data frame as shown below − Live DemoxRead More

Nizamuddin Siddiqui
801 Views
To find the row and column position of a value as vector in an R matrix, we can follow the below steps −First of all, create a matrix.Then, find the row and column position of a particular value using which function and reading the output with as.vector function.Example 1Create a ... Read More