Displaying 4 results from an estimated 4 matches for "corrr".
Did you mean:
corr
2016 Jul 14
0
New package: corrr 0.1.0
Dear R users,
I'm glad to announce the release of a new package on CRAN for exploring
correlations in R: corrr
<https://cran.rstudio.com/web/packages/corrr/index.html> .
corrr provides a handful of methods to create and explore a correlation tbl
(rather than a matrix). E.g., rearrange() the correlations based on their
strength, or focus() on selected variables against others. All methods are
desig...
2016 Jul 14
0
New package: corrr 0.1.0
Dear R users,
I'm glad to announce the release of a new package on CRAN for exploring
correlations in R: corrr
<https://cran.rstudio.com/web/packages/corrr/index.html> .
corrr provides a handful of methods to create and explore a correlation tbl
(rather than a matrix). E.g., rearrange() the correlations based on their
strength, or focus() on selected variables against others. All methods are
desig...
2006 Apr 19
1
Probable Numeric Bugs in svd function (PR#8781)
...lt;200 & Region=3D=3D2)=0D
sigmas<-c(13.71,162.71,8.78,103.83,5.29,77.08,3.42,41.04)=0D
temp1<-sigmas[1]*usLow+sigmas[2]*usHigh+sigmas[5]*euLow+sigmas[6]*euHigh=0D
temp10<-sigmas[3]*usLow+sigmas[4]*usHigh+sigmas[7]*euLow+sigmas[8]*euHig=0D
h=0D
CorrEU<-0.89=0D
CorrUS<-0.82=0D
=0D
CorrR<-matrix(0,2*SN.nb,2*SN.nb)=0D
diag(CorrR)<-c(temp1^2,temp10^2)=0D
=0D
temp<-ifelse(Region=3D=3D1,CorrUS,CorrEU)=0D
tempMat<-matrix(0,SN.nb,SN.nb)=0D
diag(tempMat)<-temp*temp1*temp10=0D
CorrR[(SN.nb+1):(2*SN.nb),1:SN.nb]<-tempMat=0D
CorrR[1:SN.nb,(SN.nb+1):(2*SN.nb)]<-tempMat=0D...
2017 Jul 06
0
Question about correlation
...On 2017-07-06 10:38, SEB140004 Student wrote:
> Ya. I had successfully got the result. Thank you very much. :)
>
> Isn't possible for me to obtain the network from the correlation matrix?
I know nothing about correlation networks, but by googling I found two R
packages, ggraph and corrr, that may be of interest to you.
G?ran
> On Thu, Jul 6, 2017 at 1:38 AM, G?ran Brostr?m <goran.brostrom at umu.se
> <mailto:goran.brostrom at umu.se>> wrote:
>
> On 2017-07-05 11:56, Jim Lemon wrote:
>
> Hi Chin Yi,
> If you are trying to co...