Skip to content

Instantly share code, notes, and snippets.

Created February 3, 2016 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/ffb5b2abfac9f95e9d81 to your computer and use it in GitHub Desktop.
Save anonymous/ffb5b2abfac9f95e9d81 to your computer and use it in GitHub Desktop.
Plot_cluster.R
for(j in 1:max(clustering$cluster))
{
plot.default(x = NA, xlim = c(1, 12),
ylim = c(min(y), max(y)), xlab = "Time", ylab = "Expression changes",
main = paste("Cluster", j), axes = FALSE)
axis(1, 1:12, c(1:12))
axis(2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment