79417378

Date: 2025-02-06 09:38:00
Score: 0.5
Natty:
Report link

An alternative is to extract the .Data slot from the S4 object with @. The code below will produce the same result as the code provided by Jari Oksanen.

library(phyloseq)
library(vegan)

data("GlobalPatterns")

GlobalPatterns %>% 
otu_table() %>%
`@`(., ".Data") %>% 
t() %>% 
vegan::rarecurve(.,step = 10000)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Latrunculia