search for: minitab

Displaying 20 results from an estimated 159 matches for "minitab".

2005 Feb 11
1
importing minitab datasets
I'm having trouble using the read.mtp function in the foreign package to import datasets from minitab (.mtw) format. Specifically, each file I try to import fails to load any data beyond a header row stating the version of Minitab that saved the dataset. I get this error: incomplete final line found by readtableHeader on 'income.mtw' The dataset appears to be complete (ie, using the sca...
2005 Apr 20
6
Anova - adjusted or sequential sums of squares?
...ng numbers of observations in each of the four combinations, but all four combinations *are* present (2 of the factor combinations have 3 observations, 1 has 4 and 1 has 5) I have used both anova(aov(...)) and anova(lm(...)) in R and it gave the same result - as expected. I then plugged this into minitab, performed what minitab called a General Linear Model (I have to use this in minitab as I have an unbalanced data set) and got a different result. After a little mining this is because minitab, by default, uses the type III adjusted SS. Sure enough, if I changed minitab to use the type I sequentia...
2003 Nov 19
2
Difference in ANOVA results - R vs. JMP/Minitab
Hi, I ran a small data set from a factorial experiment through R, Minitab and JMP... the result from R is significantly different from what Minitab or JMP give... The data set is at the following link: http://www.personal.psu.edu/nug107/Uploads/2x3_16repsANOVA.txt The first 5 columns are the factors and the next three are responses. In particular, for the response be...
2008 Jul 18
1
function "eigen" AND Minitab
Hi all. I got a question about eigenvector. I've tried input a symmetric matrix to both R (using eigen function) and minitab, but the result is really different. Can anyone tell me what's wrong with that? Thanks. [[alternative HTML version deleted]]
2011 Mar 07
3
linear mixed model with nested factors
Hi R-help. I am trying to run a linear mixed model with nested factors with either lme or lmer and I am having no luck obtaining the same results as Minitab. Here is Minitab's code: MTB > GLM 'count' = site year replicate(site year) site*year; SUBC> Random 'year' 'replicate'; Can you tell me how to code this in R? The settings are typeII, Tukey, 95%confidence interval, but I know how to set those in R. I have bas...
2000 Dec 22
1
Do we have similar function to Minitab's INDICATOR?
Dear R-Friends, Do we have a similar R function to work like Minitab's INDICATOR? INDICATOR C2, C11-C15 C2 C11 C12 C13 C14 C15 2 1 0 0 0 0 2 1 0 0 0 0 5 ------> 0 0 0 1 0 3 0 1 0 0 0 6 0 0 0 0 1 5 0 0 0 1 0...
2010 Jan 30
1
MA parameter in R vs. Minitab
Dear R People: I ran an ARIMA(1,0,1) on a particular series in R and got a negative MA(1) estimate. Then I ran an ARIMA(1,0,1) on the same series in Minitab and got a positive MA(1) estimate. The values are about -0.69 and 0.70. Does R show the opposite value, please? Thanks, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at gmail.com
2001 May 06
0
minitab and wine?
hi, I am trying to get minitab demo work with wine but can't:-( here's what happened so far: installation worked, the program seems to be installed properly, on windows partition (wine c:\Program Files directory) here's what happens when I run it: jojda:~>wine /mnt/win/Program\ Files/MTBDEMO/Mtb13GE.exe FIX...
2008 Sep 25
5
Dot plot - equivalent of MINITAB
hi folks, Bit of a newbie, but I've spent a fair bit of time looking for an answer on this, with no joy. Can anyone help me? Dataset: A single column of values in a csv file (eg. 52, 53, 54, 85, etc) Goal: In Minitab, you have what they call a dot plot. It's a histogram, where a single dot represents a set of identical values (eg. 57, 57, 57 would be one dot). Multiple dots are stacked on top of each other (as if gravity was affecting them). The advantage is that outliers are very visible (since a single...
2007 Feb 05
5
Beginner Question on Persp()
I recently downloaded R for Windows, running on Win XP. I'm trying to create a perspective plot but not having any luck after reading the R manual and several examples found on the Internet. I have a 100 x 100 matrix of Z data as a tab-delimited text file exported from Minitab. I read this in to R using read.delim; this seemed to go ok. I created X and Y using seq() to get 100 divisions for the X and Y axes. Again, everything looked good, when I typed X or Y I got a string of 100 numbers. However, when I try to do persp(x,y,z) I get an error something like: (list) c...
2006 Feb 09
4
New user: Custom probability distribution
Hello, Given a probability function: p(x) = 12 / (25(x+1)) , x=0, 1, 2, 3 we generate the following values: C1 C2 0 0.48 1 0.24 2 0.16 3 0.12 Now, I'm supposed to create 50 random values using this table. In MiniTab, I simply selected Calc -> Random Data -> Discrete, and selected the columns, and it created 50 random values in a new column.[1] How do I do the same thing in R? [1] You may be wondering why I'm telling you this. Well, it's because if I were in your shoes, I'd think "Oh...
2004 May 14
1
covariates in lm
Dear R list, I have been trying to do a linear model, extracting the effect of a covariate.... and the results do not match, when I do it with other programs (e.g. minitab).... so it is obvious that I was doing something wrong. Whan I do it with minitab, I have this results: (sector is a factor and depth is the covariate): Source DF Seq SS Adj SS Adj MS F P sector 6 9.0605 2.9989 0.4998 1.21 0.297 depth...
2007 Jul 25
1
Minitab Parametric Distribution Analysis in R
Minitab can perform a "Parametric Distribution Analysis - Arbitrary Censoring" with one of eight distributions (e.g., weibull), giving the maximum likelihood estimates of the parameters in the distribution for a given dataset. Does R have a package that provides equivalent functionality? Thanks f...
2008 Jul 06
1
Different Autocorrelation using R and other softwares
Dear All, Would like to ask the inconsistency in the autocorrelation from R with SPSS/Minitab. I have tried a dataset x with 20 data (1-20) and ask R to give the autocorrelation of different lags using the command < acf(x, lag.max=100, type = "correlation"), However while SPSS and Minitab give the same answers (0.85 for lag1), R gives 0.3688 which is much smaller. Obviously,...
2000 Dec 22
1
Found "answer" to my question on MTB's INDICATOR
Dear R-Friends, Sorry to bother everyone with my earlier question: "Do we have similar R function to work like Minitab's INDICATOR?" I found the way to make things work: e.g., > x <- c(2,2,5,3,6,5,NA) > model.matrix(~ factor(x) - 1) factor(x)2 factor(x)3 factor(x)5 factor(x)6 1 1 0 0 0 2 1 0 0 0 3 0 0...
2005 May 09
0
R code to reproduce solutions to example problems in Mathews, Design of Experiments with MINITAB
The R code to reproduce the solutions to the example problems in Design of Experiments with MINITAB by Paul Mathews (ASQ Quality Press, 2005) is now posted at http://www.mmbstatistical.com/DOEwithMINITAB.html. Enjoy! Paul Mathews -- Paul Mathews Mathews Malnar and Bailey, Inc. 217 Third Street, Fairport Harbor, OH 44077 Phone: 440-350-0911 Fax: 440-350-7210 E-mail: Paul: pmathews at...
2008 Apr 21
1
R-2.7.0 RC (2008-04-20 r45403) fails fullcheck
...ng examples in 'foreign-Ex.R' ... Comparing `foreign-Ex.Rout' to `foreign-Ex.Rout.prev' ...OK Running specific tests Running `S3.R' Comparing `S3.Rout' to `S3.Rout.save' ...OK Running `arff.R' Comparing `arff.Rout' to `arff.Rout.save' ...OK Running `minitab.R' Comparing `minitab.Rout' to `minitab.Rout.save' ...OK Running `octave.R' Comparing `octave.Rout' to `octave.Rout.save' ...OK Running `sas.R' make[2]: *** [sas.Rout] Error 1 make[1]: *** [tests] Error 2 make: *** [pkgcheck-foreign] Error 2 This also happens wh...
2003 Dec 08
2
Character graphics
Does anyone else miss email-friendly character graphics such as the following example, produced using Minitab? Histogram of C6 N = 478 N* = 21 Each * represents 2 observation(s) Midpoint Count -12 16 ******** -11 53 *************************** -10 63 ******************************** -9 83 *************************************...
2010 Feb 09
3
Goodness
Hola, LLevo buscando desde hace tiempo como hacer el Goodness of fit test en R. Es decir, me explico, intento hacer una cosa parecida que se hace en Minitab, por ejemplo, yo tengo un conjunto de datos, y lo que quiero es sabes que tipo de distibución es, en minitab se hace un histograma para ver si se ajusta bien o no a la campana de Gauss, luego vemos si aproximar la distribución de la muestra por una Normal es lícito. Es decir, minitab genera un Pro...
2004 Nov 21
1
Two factor ANOVA in lme
...random factor is not in the main model - it is a nesting factor etc to specify the error structure. Here i need the random factor in the model. I have tried this: height.aov<-lme(height~trt*genotype,data.reps,random=~1|genotype,na.action=na.exclude) but the output is nothing like that from Minitab (my only previous experience of stats software). The results for the interaction term are the same but F values for the factors alone are very different between Minitab and R. This is a very simple model but I can't figure out how to specify it. Help would be much appreciated. As backgrou...