https://github.com/cran/quantreg
Raw File
Tip revision: 948ad5967298b4dc174f4d96511af60f38e9279e authored by Roger Koenker on 27 July 2019, 09:38:23 UTC
version 5.42.1
Tip revision: 948ad59
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