https://github.com/cran/quantreg
Raw File
Tip revision: 6599e015b196d3220041ffaf64414375c87d5be5 authored by Roger Koenker on 14 May 2016, 00:47:02 UTC
version 5.24
Tip revision: 6599e01
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