
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
135 Views
To divide the row values by row maximum 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 maximum.Create the data frameLet's create a data frame as shown below −library(data.table) xRead More

Nizamuddin Siddiqui
2K+ Views
To find the critical value of F for one-way ANOVA in R, we can follow the below steps −First of all, create a data frame with one categorical and one numerical column.Then, use aov function to find the anova table.After that, use qf function to find the critical value of ... Read More

Nizamuddin Siddiqui
301 Views
To expand a data frame rows by its index position in R, we can follow the below steps −First of all, create a data frame.Then, use rep and seq_len function with nrow to expand the data frame rows by their index position.Create the data frameLet's create a data frame as ... Read More

Nizamuddin Siddiqui
231 Views
To divide matrix row values by row standard deviation 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 standard deviation.Create the matrixLet's create a matrix as shown below − Live DemoM

Nizamuddin Siddiqui
605 Views
To print a factor vector without levels in R, we can follow the below steps −First of all, create a factor vector.Then, use as.character function to read the vector.Example 1Create a factor vectorLet’s create a vector called f1 as shown below − Live Demof1

Nizamuddin Siddiqui
139 Views
To return a logical value for a t test based on 0.05 level of significance in R, we can follow the below steps −First of all, create a data frame with one column.Apply t.test function with ifelse to return logical value based on 0.05 level of significance.Example1Create the data frameLet's ... Read More

Nizamuddin Siddiqui
144 Views
To find the maximum value in each matrix stored in an R list, we can follow the below steps −First of all, create a list of matrices.Then, use max function along with lapply function to find the maximum of each matrix.Create the list of matricesUsing matrix function to create multiple ... Read More

Nizamuddin Siddiqui
163 Views
To divide matrix row values by row median 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 median.Create the matrixLet's create a matrix as shown below − Live DemoM

Nizamuddin Siddiqui
2K+ Views
To create a table of frequency for range of values in an R data frame column, we can follow the below steps −First of all, create a data frame.Then, use table function with cut function to create the table of frequency for range of values.Example 1Create the data frameLet's create ... Read More