
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
How to cut a data frame column with minimum value in R?
To cut a data frame column with minimum value, we need to specify the minimum value withing cut function with the help of min function and set the include.lowest argument to TRUE. We can also specify the maximum value so that the maximum value is also taken into account while cutting the column.
Example 1
Following snippet creates a sample data frame −
x<-rpois(20,5) df1<-data.frame(x) df1
The following dataframe is created −
x 1 6 2 7 3 4 4 3 5 6 6 2 7 7 8 2 9 3 10 2 11 5 12 4 13 3 14 8 15 11 16 2 17 6 18 3 19 3 20 4
To cut the column x with minimum and maximum value, add the following code to the above snippet −
cut(df1$x,c(min(df1$x),3:10,max(df1$x)),include.lowest=TRUE)
Output
If you execute all the above given snippets as a single program, it generates the following output −
[1] (5,6] (6,7] (3,4] [2,3] (5,6] [2,3] (6,7] [2,3] [2,3] [10] [2,3] (4,5] (3,4] [2,3] (7,8] (10,11] [2,3] (5,6] [2,3] [19] [2,3] (3,4] Levels: [2,3] (3,4] (4,5] (5,6] (6,7] (7,8] (8,9] (9,10] (10,11]
Example 2
Following snippet creates a sample data frame −
y<-rpois(20,10) df2<-data.frame(y) df2
The following dataframe is created −
y 1 16 2 10 3 11 4 5 5 12 6 10 7 8 8 6 9 11 10 3 11 13 12 12 13 10 14 11 15 8 16 9 17 7 18 8 19 8 20 9
To cut the column y with minimum and maximum value, add the following code to the above snippet −
cut(df2$y,c(min(df2$y),4:15,max(df2$y)),include.lowest=TRUE)
Output
If you execute all the above given snippets as a single program, it generates the following output −
[1] (15,16] (9,10] (10,11] (4,5] (11,12] (9,10] (7,8] (5,6] (10,11] [10] [3,4] (12,13] (11,12] (9,10] (10,11] (7,8] (8,9] (6,7] (7,8] [19] (7,8] (8,9] 13 Levels: [3,4] (4,5] (5,6] (6,7] (7,8] (8,9] (9,10] (10,11] ... (15,16]
Example 3
Following snippet creates a sample data frame −
df3<-data.frame(z) df3
The following dataframe is created −
z 1 3 2 2 3 1 4 2 5 1 6 6 7 2 8 2 9 2 10 1 11 0 12 1 13 1 14 1 15 2 16 1 17 3 18 0 19 4 20 2
To cut column z with minimum and maximum value, add the following code to the above snippet −
cut(df3$z,c(min(df3$z),1:5,max(df3$z)),include.lowest=TRUE)
Output
If you execute all the above given snippets as a single program, it generates the following output −
[1] (2,3] (1,2] [0,1] (1,2] [0,1] (5,6] (1,2] (1,2] (1,2] [0,1] [0,1] [0,1] [13] [0,1] [0,1] (1,2] [0,1] (2,3] [0,1] (3,4] (1,2] Levels: [0,1] (1,2] (2,3] (3,4] (4,5] (5,6]
- Related Questions & Answers
- How to match a column in a data frame with a column in another data frame in R?
- How to extract a data frame’s column value based on a column value of another data frame in R?
- How to assign a column value in a data frame based on another column in another R data frame?
- How to replace zero with previous value in an R data frame column?
- How to find the position of a data frame’s column value based on a column value of another data frame in R?
- How to replace a particular value in R data frame with a new value?
- How to divide each value in a data frame by column total in R?
- Create a quartile column for each value in an R data frame column.
- How to add a new column to an R data frame with largest value in each row?
- How to create a column with column name for maximum value in each row of an R data frame?
- How to create a column with largest size string value in rows in an R data frame?
- How to convert a data frame into two column data frame with values and column name as variable in R?
- How to display numbers with decimal in R data frame column?
- How to standardized a column in an R data frame?
- How to split a data frame by column in R?