Displaying 2 results from an estimated 2 matches for "meplot".
Did you mean:
replot
2010 Jun 24
1
BBH2 and FrF2 packages
...52
6 6 1 -1 1 83
7 7 -1 1 1 45
8 8 1 1 1 80
Using these data and the R BHH2 package, I was not able to reproduce the very simple results in the BHH2 book.
In particular, the following solution will have no meaning since K is categorical:
( plan <- lm(y ~ (T+C+K)^2, data = DATA) )
MEPlot(plan) # Main Effects
IAPlot(plan) # Interactions Effects
DanielPlot(plan)
cubePlot(plan, "T", "C", "K")
I decided to rebuilt the data using:
plan <- FrF2(8, 3, factor.names=c("T","C","K"), default.level=c("-","+"),...
2011 Jul 07
4
Return invisible list
Hi, I'm new to R. I'm trying to do some extreme value theory analysis,
looking at the Mean Excess Plot of a series. These are the commands I type
to get the plot:
x=read.table("data.txt",header=T)
goa=(x[,3])
meplot(goa)
I can see the plot, but I would like to see the values of the x and y axis.
According to this page
(http://rss.acs.unt.edu/Rdoc/library/VGAM/html/meplot.html), "A list is
returned invisibly with the following components.
threshold The x axis values.
meanExcess The y axis values....