Questions tagged [minitab]

Statistical software available from the Minitab corporation.

Tag Usage

questions on Stack Overflow SE must be programming-related.

Additional support on Minitab:

58 questions
0
votes
1 answer

Stats on categorical variables

I have 2 groups in my analysis. I have coded some lab results as 1 = bacterial colonies are red 2 = bacterial colonies are dark and shiny and 3 = bacterial colonies are black and rough. I would like to do some sort of statistical analysis on these…
0
votes
1 answer

R: Setting the color for an individual data point in stripchart

I have trouble in setting the color of an outlier in a stripchart. I tried two method, but neither worked. Here is the code: x = rnorm(30) x[20]=10 # 1 stripchart(x,main='Outlier Plot',xlab='x', pch=20, col=ifelse(x==10, 'red', 'blue')) # 2 cols =…
ppppppppp
  • 3
  • 2
0
votes
1 answer

Read SQL query from file in Minitab

I know how to run a SQL query in minitab using : ODBC; Connect "Driver={SQLite3 ODBC Driver};Database=..."; SQLString "SELECT * FROM Table". However, this is very constraining since the length of the command line is limited in Minitab...…
Maxime
  • 594
  • 5
  • 17
0
votes
0 answers

How do I get the standard ANOVA table which has SSR, SSE, SSTO in Python?

I am trying to get an extra/sequence SS output with the following code: reg2 = smf.ols(formula='Y ~ X3 + X2', data = df).fit() anova_results2 = sm.stats.anova_lm(reg2, typ=1) (anova_results2) I would like it to look like the standard ANOVA output…
0
votes
1 answer

Minitab closes automatically with Excel macros

I want to run the macros to perform capability on the excel file stored separately. I created a minitab macro file and saved it in.MAC format. When I run the excel macro code to open the minitab code, it runs the mac code and closes automatically …
Gowtham
  • 1
  • 2
0
votes
1 answer

Xbar Control chart with only sample means

i'm trying to create an Xbar R control chart with only the information of the means of each sample and the information of the R.As follows in the next picture. Anyone know how can i do this? Thank you.
0
votes
2 answers

Error in saving minitab graphs and plots: "...collection is empty and contains no valid output object"

I want to automate GageR&R study in minitab. I found code but the line mtbProject.Commands.Item(1).Outputs.Item(1).Graph.SaveAs. Gives Run time error:"IOutput: IOutput collection is empty and contains no valid output object" Sub msa_macro() …
0
votes
0 answers

Could not load file or assembly for external dll

I am trying to create a Minitab Add in using COM in C#. I am adding some external reference such as ZedGraph or OxyPlot. But every time it is unable to find dll. If I use dll as embedded resource, then it throws: external component has thrown an…
Waqar Ahmed
  • 5,005
  • 2
  • 23
  • 45
0
votes
3 answers

How Can I Run a Nonlinear Regression Macro in Minitab (simple syntax error)?

I'm new to scripting Minitab 17 and have run into a snag that I can't find any documentation for, including an error message that brings up no hits on Google. All I want to do is generate macros that perform simple nonlinear regressions…
SQLServerSteve
  • 332
  • 1
  • 11
  • 22
0
votes
0 answers

Comparing count data with lots of zeroes

I'm not one to search for the most tenuous significant difference I can find, but hear me out. I have some count data with four groups (3 of these can be combined to one, if necessary), groups A, B, C, and X. Looking at the means and interval…
0
votes
0 answers

How to do Minitab's factor analysis in R?

I am used to running multivariate factor analysis in Minitab with the default settings (method of extraction: principal components; type of rotation: none; matrix to factor: correlation; source of matrix: compute from variables; loadings for initial…
0
votes
1 answer

Minitab Automation and Skipping Columns

My main code is below: Mtb.Application MtbApp = new Mtb.Application(); MtbApp.UserInterface.Visible = true; MtbApp.UserInterface.DisplayAlerts = false; Mtb.Project MtbProj = MtbApp.ActiveProject; Mtb.Columns MtbColumns; Mtb.Column…
张绍峰
  • 301
  • 2
  • 13
0
votes
1 answer

How to find P_Value (i.e. *) in Fit Regression Model and Pool standard deviation S (i.e. *) In Minitab17?

S; R-sq ; R-sq(adj) ;R-sq(pred) * ; 100.00% ; * ; * Coefficients Term ; Coef; Coef ; T-Value; P-Value ; VIF Constant ; 0.07526 ; * ; *; *; Hardware EV ; 0.3593 ; …
Bhaskar
  • 5
  • 3
0
votes
2 answers

Minitab 17 Menu Bar not visible

Minitab is missing the Menu bar at the top in my PC.Can anyone help me how to restore the Menu Bar?I have not changed any setting to hide it.
Padma Yeddula
  • 167
  • 2
  • 14
0
votes
2 answers

Do operations with the upper adjacent cell of a cell in Minitab 17. Is it possible?

I've been trying to make a graph of the estimated RTT in the TCP protocol, and the formula to get the estimated RTT is: EstimatedRTT1 = (1- α)*EstimatedRTT0 + α*RTT where EstimatedRTT1 is the value of the current estimation of the RTT and…
TheLaser
  • 1
  • 2