https://github.com/cran/quantreg
Raw File
Tip revision: c986e01dfb274d79a2c9dd126bfebb4365adf156 authored by Roger Koenker on 09 November 2019, 13:20:02 UTC
version 5.52
Tip revision: c986e01
combos.R
# Demo of combos functions
H <- combos(20,3)
if(!require("rgl",quietly=TRUE)){
      warning("The package rgl is needed for plotting")
     } else{
      if(interactive()){
         plot3d(t(H))
         lines3d(t(H),col=rep(topo.colors(57),20))
         }
     }
back to top