what is p-value
Answers were Sorted based on User's Feedback
Answer / prakash
p value is the probability of error occured by chance.in
clinical the results are considered to be significant if the
pvalue is <0.05
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / krishna&rajesh
p-value is a probability value commonly used in comparative
clinical trials to test wether there exists they significance
difference for a specific summary measures.(p-value is used
to get the probability of an accomplishing result.)
| Is This Answer Correct ? | 0 Yes | 2 No |
Explain the use of proc print and proc contents?
how do you read binary data in sas?
How many missing values are available? When might you use them?
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
Does anybody have SAS Training manual or documentation or can you refer me any book to have better understanding on SAS. I am fresher to SAS tool. (Ready to pay)
What Proc glm does?
i have a dataset with 25 obs; 10th obs has like ramu,anji,ramu,azad,ramu like this. i want to know how many times the word repeats in that obs?
what is chi-square test? have you used that?
1 Answers Accenture, Quintiles,
What is SAS? is it a software just for use or we can creat something over there?
how can you get the single data set from the library(which has the number of data sets)?
3 Answers Accenture, Deloitte,
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too