search for: probfile

Displaying 1 result from an estimated 1 matches for "probfile".

Did you mean: probefile
2009 Jun 22
0
QQplots of probability vector data
...n. I've found the probabilities of each number and put it in a file of the form 36 .0009 37 .0003 38 .0006 39 .0007 where the first column is the number and the second is the probability of that number. Now what I've done so far is as follows: null=read.table("probfile.txt",header=FALSE) #Prob file is the 2nd file where $V1 is the number and $V2 is the probability and I want to do x=qnorm(null$V2, ... ) but I don't know how to get the mean and sd from those 2 files. When I looked up mean() and sd(), I had to give a vector of numbers. As I only...