You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@liunanaliu, the following code should do the trick:
library(flowWorkspace)
library(tibble)
# fs is your flowSet - tbl_list is a list of tibbles
tbl_list <- structure(
lapply(
seq_along(fs),
function(x) {
as_tibble(exprs(fs[[x]]))
}
),
names = sampleNames(fs)
)
# access individual tibbles by name or index
tbl_list[[1]]
Describe the bug
Hello,
Thanks a lot for the package, that is so helpful and awesome.
I am wondering if I could change the flowset as a list of all samples with S3 object. I tried
I could like to have the flowset into list of all samples, each sample exist as a tibble, is that possible, thanks a lot!
Best regards,
Na
The text was updated successfully, but these errors were encountered: