Skip to content
Snippets Groups Projects
Select Git revision
  • 09e2b2fc325b7083c12ddea573f18167d6dd647b
  • master default protected
  • dev
  • v2.0.0
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
18 results

nextflow.pbs

Blame
  • 3_c 380 B
    # you might use stat_summary(), which summarises the y values for each unique x
    # value, to draw attention to the summary that you’re computing:
    
    ggplot(data = diamonds) + 
      stat_summary(
        mapping = aes(x = cut, y = depth)
      )
      
    ggplot(data = diamonds) + 
      stat_summary(
        mapping = aes(x = cut, y = depth),
        fun.ymin = min,
        fun.ymax = max,
        fun.y = median
      )