Streamgraph is a R package designed to create graphs that show the evolution of a group of numeric values. This tag should be used for questions about using the package in R, generating graphs or incorporating the package into your analysis workflow
Questions tagged [r-streamgraph]
4 questions
1
vote
1 answer
"streamgraph_html returned an object of class `list` instead of a `shiny.tag`"
For this week's TidyTuesday challenge, I am trying to plot a stream graph of the top 5 male names and their frequencies. I am using the following code for this purpose
tuesdata <- tidytuesdayR::tt_load('2022-03-22')
babynames <-…

mzkrc
- 219
- 2
- 7
0
votes
1 answer
Generating a htmlwidget instead of a Shiny.tag with streamgraph
I recently made a streamgraph using the streamgraph package and I'm unable to save the graph as an "htmlwidget". It's currently a "Shiny.tag" and converting it to an htmlwidget would help me add it to a static webpage. Is there a way to change this?

Josway
- 35
- 6
0
votes
1 answer
Adding title to a streamgraph object in R
I have data like this "subexample"
structure(list(monthyr = structure(c(17287, 17287, 17287, 17287,
17287, 17287, 17287, 17287, 17287, 17287, 17287, 17287, 17287,
17287, 17287, 17287, 17287, 17287), class = "Date"), Location = c("TAI",
"NAM",…

user195366
- 465
- 2
- 13
0
votes
0 answers
Streamgraph package in R will run the data but no graph will be shown
The streamgraph function in r will run without giving errors but nothing will show up in the viewer pane.
library(psych)
library(corrplot)
library(ggplot2)
#Load Data Set
movie1 = read.csv(file.choose(), header=TRUE)
#installing and loading…

Benji
- 13
- 2