Quantcast
Channel: Codemiles.com Programming Forums - All Topics
Viewing all articles
Browse latest Browse all 36

Spearman correlation in R with pie charts

$
0
0
This example shows how to use Spearman correlation in R with pie charts.
Code: 


setwd("D:/FirstPaper/Eclipse/")


require(foreign)
require(ggplot2)
require(MASS)
require(boot)

data <- read.csv("Femo_duplicates_X.csv",head=TRUE );
dat <- read.csv("Femo_duplicates.csv",head=TRUE );


require(randomForest)

require(ROSE)
if(!require(caret)){
  library(caret) 
}
if(!require(pROC)){
  library(pROC)
}
library (ROCR);

## get correlation to subset of the

...

Statistics : Posted by codemiles • on Tue Dec 16, 2014 6:28 am • Replies 1 • Views 6172

Viewing all articles
Browse latest Browse all 36

Trending Articles