Requirements:
dplyr v>=1.0.0
library(dplyr)
# Data preparation
df <- tibble(w = 0:2, x = 1:3,
y = c("a", "b", "c"),
z = c("d", "e", "f"))
df
## # A tibble: 3 x 4
## w x y z
## <int> <int> <chr> <chr>
## 1 0 1 a d
## 2 1 2 b e
## 3 2 3 c f
# Relocate columns to the left hand side
df %>% relocate(y, z)
## # A tibble: 3 x 4
## y z w x
## <chr> <chr> <int> <int>
## 1 a d 0 1
## 2 b e 1 2
## 3 c f 2 3
# Move columns to a different position
# Relocate after a specific column
df %>% relocate(w, .after = y)
## # A tibble: 3 x 4
## x y w z
## <int> <chr> <int> <chr>
## 1 1 a 0 d
## 2 2 b 1 e
## 3 3 c 2 f
# Relocate before a specific column
df %>% relocate(w, .before = y)
## # A tibble: 3 x 4
## x w y z
## <int> <int> <chr> <chr>
## 1 1 0 a d
## 2 2 1 b e
## 3 3 2 c f
# Move columns to the right hand side use `last_col()`
df %>% relocate(w, .after = last_col())
## # A tibble: 3 x 4
## x y z w
## <int> <chr> <chr> <int>
## 1 1 a d 0
## 2 2 b e 1
## 3 3 c f 2
Recommended for you
This section contains best data science and self-development resources to help you on your path.
Books - Data Science
Our Books
- Practical Guide to Cluster Analysis in R by A. Kassambara (Datanovia)
- Practical Guide To Principal Component Methods in R by A. Kassambara (Datanovia)
- Machine Learning Essentials: Practical Guide in R by A. Kassambara (Datanovia)
- R Graphics Essentials for Great Data Visualization by A. Kassambara (Datanovia)
- GGPlot2 Essentials for Great Data Visualization in R by A. Kassambara (Datanovia)
- Network Analysis and Visualization in R by A. Kassambara (Datanovia)
- Practical Statistics in R for Comparing Groups: Numerical Variables by A. Kassambara (Datanovia)
- Inter-Rater Reliability Essentials: Practical Guide in R by A. Kassambara (Datanovia)
Others
- R for Data Science: Import, Tidy, Transform, Visualize, and Model Data by Hadley Wickham & Garrett Grolemund
- Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow: Concepts, Tools, and Techniques to Build Intelligent Systems by Aurelien Géron
- Practical Statistics for Data Scientists: 50 Essential Concepts by Peter Bruce & Andrew Bruce
- Hands-On Programming with R: Write Your Own Functions And Simulations by Garrett Grolemund & Hadley Wickham
- An Introduction to Statistical Learning: with Applications in R by Gareth James et al.
- Deep Learning with R by François Chollet & J.J. Allaire
- Deep Learning with Python by François Chollet
Version: Français
No Comments