Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about CollectivesR Language has some news to share
R Language admins have deemed these posts noteworthy.
These questions still don't have an answer
These answers have been recommended
You're missing keyring= in your call to keyring::key_set_with_value(). When I set that, it should no longer prompt for the system/default keyring.My .env file:KEYRING_SERVICE="quux"...
This looks like an XY-problem.You don't need to deal with those "unwanted" portions.data.frame( id = 1:5, full_address = c( "1600 Pennsylvania Ave NW, Washington, DC 20500, ...
You can use ggtext and html/markdown:myplot <- ggplot(df, aes(x=factor(resp), fill=resp))+ geom_bar(stat="count", width = 0.5) + ylab("N of occurences")+ ...
mapshot captures the default viewport which does not necessarily match your app's actual container dimensions.Here, I am capturing dimensions of the leaflet container (both initially and on resize). ...
Simply use rbind when creating the list of your models:modelsummary::modelsummary( list( "base" = rbind(res1, res2), "ctrl" = rbind(res3, res4) ), stars = TRUE)
These are the most active questions in R Language Collective