https://github.com/cran/quantreg
Raw File
Tip revision: 889ac4040965a76e5670f2de9f0f91fbfe51b35b authored by Roger Koenker on 20 July 2022, 07:40:02 UTC
version 5.94
Tip revision: 889ac40
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