https://github.com/cran/quantreg
Raw File
Tip revision: 92269b50ae23297ededa6a58d77823e1302a6b8e authored by Roger Koenker on 06 June 2021, 16:10:02 UTC
version 5.86
Tip revision: 92269b5
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