Displaying 1 result from an estimated 1 matches for "sig_value".
2009 Jan 02
1
Calculating signicance value
...ir in the correlation values
shown above i just pass the above dataset .But how do i get significance of
e say:--
recmeanC1&recmeanC2 or say recmeanC1 & i1.
I can add this in my corr function shown above but:----
#Finding out significance of the two items whose correlations are being
found
sig_value<-cor.test(corr_dataset)
and also return that :-
return(list(matrix=BPcor,sig=sig_value))
For example recmeanC1 and i1 has to be passed here..as 2 separate
dataframes,shown below if i pass the dataset for (recmeanC1 & i1 ) as as
single datframe,cor.test() function doesn't accept it.More...