python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
group tibble rows by unordered combination of columns
Given the following tibble
tibble(sample = c(1:6),
string = c("ABC","ABC","CBA","FED","DEF","DEF"),
x = c("a","...

acvill
Votes: 0
Answers: 1
Struggling to unnest tibble (dput, code, and error included) in r
I'm trying to unnest a species count tibble so I can turn it into a dataframe. The last four columns are species counts and are currently in 'list' form (seems nested?). I'd like to have each column a...
Bill_marinestats98
Votes: 0
Answers: 2
Fill the NAs values in a dataframe based on calculation of columns in other dataframe
I have 2 dataframes. The RP and the RP2. My goal is to fill the NAs of RP columns Country_1 and Country_2 based on the conditions below:
1.If a cell of RP has already value leave it as it is.
2.If it ...
firmo23
Votes: 0
Answers: 1
How to handle list of tibbles in R and their content?
Let's consider the following R code only for exemplification purpose:
X <- tibble(v0=seq( as.Date("2011-07-01"), by=1, len=6),v1 = c(1,-1,2,1,2,-1), v2 = replicate(6, 0), v3 = c(NA,NA,NA,...

Barbab
Votes: 0
Answers: 2