Skip to content

Commit

Permalink
added alternative texts for generated plots in main vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
phauchamps committed Oct 14, 2024
1 parent d924f2a commit 276c88b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion vignettes/CytoPipeline.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,10 @@ library("ggplot2")


```{r plotRetainedProp}
#| fig.alt: >
#| Scatterplot of proportion of retained events as a function of the
#| cumulated preprocessing steps, for the two fcs files.
#| As expected, this proportion decreases at each step.
myGGPlot <- function(DF, title){
stepNames = colnames(DF)
rowNames = rownames(DF)
Expand Down Expand Up @@ -606,6 +609,10 @@ p1


```{r plotStepRemovedProp}
#| fig.alt: >
#| Scatterplot of number of events removed as a function of the
#| preprocessing step, for the two fcs files.
#| The proportion varies between 0.0 and 0.4.
p2 <- myGGPlot(DF = stepRemovedProp,
title = "Event proportion removed by each step")
p2
Expand Down

0 comments on commit 276c88b

Please sign in to comment.