https://github.com/cran/quantreg
Raw File
Tip revision: 16f49417c4f7ce6308ba660aba56ee70319cd396 authored by Roger Koenker on 09 July 2020, 12:00:02 UTC
version 5.61
Tip revision: 16f4941
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