R/show.dist.R

Defines functions `show.dist`

`show.dist` <-
function(W)
  {

  for(i in 1:length(W$LETS))
    {
      print(paste(sep=' ', i, W$LETS[i], length(W$lett[W$lett==W$LETS[i]])))
    }

print("")
  
  for(i in 1:length(W$SCRS))
    {


      print(paste(sep=' ', i, W$SCRS[i], length(W$scor[W$scor==W$SCRS[i]])))
    }
  print("")
  
  print(paste(sep=' ', "mean=",mean(W$scor)))


  }

Try the ProfessR package in your browser

Any scripts or data that you put into this service are public.

ProfessR documentation built on Aug. 21, 2023, 9:07 a.m.