How to Reverse Data in R
This video shows how to reverse vectors, strings and data frames by both columns and rows in R.
Code used in this clip:
# Reverse a vector
v <- c("Reverse", "Me")
rev(v)
# Reverse a character string with stringi
library(stringi)
stri_reverse("Reverse Me")
# Reverse the columns of a data frame
data <- mtcars
head(data)
reversed_columns <- data[, rev(names(data))]
head(reversed_columns)
# Reverse the rows of a data frame
tail(data)
reversed_rows <- data[rev(1:nrow(data)), ]
head(reversed_rows)
Code Clips are basic code explanations in 3 minutes or less. They are intended to be short reference guides that provide quick breakdowns and copy/paste access to code needed to accomplish common data science tasks. Think Stack Overflow with a video explanation.
* Note: YouTube does not allow greater than or less than symbols in the text description, so the code above will not be exactly the same as the code shown in the video! For R that means I may use = for assignment and the special Unicode large < and > symbols in place of the standard sized ones for dplyr pipes and comparisons. These special symbols should work as expected for R code on Windows, but may need to be replaced with standard greater than and less than symbols for other operating systems.
Other Videos By DataDaft
2020-01-24 | How To Generate Random Numbers in R |
2020-01-22 | One Piece Bounties Over Time (1 Second = 4 Chapters) |
2019-12-16 | stringr: Viewing Strings |
2019-12-16 | stringr: Subset and Replace Strings |
2019-12-10 | Python Programming Practice: LeetCode #9 -- Palindrome Number |
2019-12-09 | stringr: String Matching |
2019-12-06 | stringr: String Interpolation |
2019-12-06 | stringr: Sorting Strings |
2019-12-06 | stringr: Split and Join Strings |
2019-12-05 | stringr: Basic String Manipulation |
2019-12-03 | How to Reverse Data in R |
2019-11-26 | Python Programming Practice: LeetCode #1 -- Two Sum |
2019-11-25 | Introduction to R: Probability Distributions |
2019-11-20 | How to Make Word Clouds in R |
2019-11-19 | How to Make a Donut Chart in R |
2019-11-15 | Dragon Ball Power Levels Over Time (1 Second = 1 Episode) |
2019-11-14 | How to Plot Functions in R |
2019-11-13 | How to Make a Bubble Plot in R |
2019-11-12 | How to Combine and Split Strings in R |
2019-11-06 | How to Make a Line Plot in R |
2019-11-04 | How to Make a Scatter Plot Matrix in R |