Navigation Menu

Skip to content

Commit

Permalink
Update cogsea_vignette.Rmd
Browse files Browse the repository at this point in the history
removed log transformation (already performed by rma)
  • Loading branch information
maxibor committed Aug 10, 2017
1 parent 30328df commit caa56dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vignettes/cogsea_vignette.Rmd
Expand Up @@ -179,14 +179,13 @@ colnames(resmin)= cname
resmin = as.data.frame(resmin)
```

#### Aggregating the PROBES matching the same ENTREZ accession number by averaging them and applying a log transformation
#### Aggregating the PROBES matching the same ENTREZ accession number by averaging them

```{r, eval = FALSE}
result = aggregate(. ~ ENTREZID, resmin, mean)
result$ENTREZID = levels(as.factor(as.character(resmin$ENTREZID)))
rownames(result) = result$ENTREZID
result = result[,-1]
result = log(result)
```

#### Visualizing in boxplot to check normalization
Expand Down

0 comments on commit caa56dc

Please sign in to comment.