Displaying 2 results from an estimated 2 matches for "gds1096".
Did you mean:
ds106
2008 May 26
1
Joining Histograms Into a Figure
Hi,
I have two histograms created separately using
the following code. It creates two separate figures.
dat <- read.table(file="GDS1096.modelout", head = FALSE )
__BEGIN__
dat <- read.table(file="GDS1096.modelout", head = FALSE )
hist(dat$V2, main="AIC Freq", xlab = "\# Component", breaks = 36, xlim =
c(0,max(dat$V2)), col = "dark red", freq = TRUE)
hist(dat$V3, main="BIC Freq&...
2008 May 26
1
X-Axis Problem with Multhist Plot
...29 33
with uneven spacing between x-ticks (see attached file).
Especially I want to create a bar for every x-axis (1,2,3,4...36),
now not every x-axis has a bar.
Is there a way to alter my following code
so that the x axis is evenly distributed:
require(plotrix)
dat <- read.table(file="GDS1096.modelout", head = FALSE )
l <- list(dat$V2,dat$V3)
multhist(l, ylab = "Frequency", beside = TRUE,
freq = TRUE, col = c("blue","red"),
xlab = "Nof Component",
xlim = c(0,max(dat$V3)+25),
ylim = c(0,10000))
legend(3...