https://github.com/cran/quantreg
Raw File
Tip revision: 200f1c11ae22b24a56cf0ca87ab882e91f773299 authored by Roger Koenker on 26 February 2013, 00:00:00 UTC
version 4.95
Tip revision: 200f1c1
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