https://github.com/cran/quantreg
Raw File
Tip revision: e68bc7a85a07b3e14413a96d0e472ee5a317a644 authored by Roger Koenker on 24 February 2021, 15:20:02 UTC
version 5.85
Tip revision: e68bc7a
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