python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to use separate_rows in tidverse when the sep is ;
I have a data frame whose one of the column has this data.
info1@domain.com; info2@domain.com; info3@domain.com
q= tibble("info1@domain.com; info2@domain.com; info3@domain.com")
sepa...
AJAY
Votes: 0
Answers: 2
Creating multiple rows from a complex string in R
Example of string in question called gene_snps:
"ultra_rare_variant_chr9:23143143_A/C_chr9:5322432_G/T_chr9:9840984342_T/C;chr9:5324234:G/T;chr9:324424_T/A"
Desired outcome:
markerID
chr9:...
tacrolimus
Votes: 0
Answers: 3
How to reshape using R for multiple value columns across one gather column
I want to reshape my data from wide to long using specific columns but create multiple value columns. Pasting below an example:
data <- read.table(header=T, text='
hhid villageid hh_1 hh_2 ag...
user2905919
Votes: 0
Answers: 2
How to sort data in descending order based on every second value in R?
I am using dplyr for most of my data wrangling in R. Yet, I am having a hard time achieving this particular effect. Can't also seem to find the answer by googling either.
Assume I have data like this ...

bajun65537
Votes: 0
Answers: 2