https://github.com/cran/quantreg
Raw File
Tip revision: 5ad24cff87e41a020a678cf6e742678aa2ee9dce authored by Roger Koenker on 29 May 2018, 10:33:02 UTC
version 5.36
Tip revision: 5ad24cf
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