| display.DVH.pc | R Documentation | 
The display.DVH.pc function displays the Dose Volume
Histogram of "dvh" class object. Y-units are percents of total volume.
display.DVH.pc(
  dvh,
  add = FALSE,
  xgrid = TRUE,
  ygrid = TRUE,
  MC.plot = FALSE,
  MC.col = grey.colors(4, rev = TRUE),
  ...
)
dvh | 
 "dvh" class object. See espadon.class for class definitions.  | 
add | 
 Boolean indicating whether to display the background image.  | 
xgrid | 
 Boolean indicating the display of the x grid.  | 
ygrid | 
 Boolean indicating the display of the y grid.  | 
MC.plot | 
 Boolean. If   | 
MC.col | 
 Character string, a valid palette with 4 colours corresponding to 100%, 95%, 50% and median of MC data.  | 
... | 
 Arguments xlab, ylab, xlim, ylim, main, type, col, lwd, lty and log managed by the plot function.  | 
Returns a plot in percent of total volume of the cumulative histogram
included in dvh, with its median, and the quantile areas (0%-100%),
(2.5%-97.5%) and (25%-75%) of the dvh$pcv variations, if they exist.
display.DVH
# loading of toy-patient objects (decrease dxyz and increase beam.nb for 
# better result)
step <- 5
patient <- toy.load.patient (modality = c("rtdose", "rtstruct"), 
                             roi.name = "gizzard", dxyz = rep (step, 3), 
                             beam.nb = 3)
# Calculation of the histogram
H <- histo.from.roi (patient$rtdose[[1]], patient$rtstruct[[1]], 
                     roi.name = "gizzard", 
                     breaks = seq (0, 60, by = 1))
# DVH
DVH <- histo.DVH (H)
display.DVH.pc (DVH)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.