Community Profile

photo

Tom Lane

Last seen: 1 jour il y a Actif depuis 2011

Statistiques

All
  • 12 Month Streak
  • Pro
  • Revival Level 2
  • Knowledgeable Level 5
  • First Answer
  • Solver

Afficher les badges

Content Feed

Afficher par

A répondu
normalization issue pdf gmm matlab
You have a substantial amount of missing (NaN) data. I believe the histogram function produces a density that integrates to the ...

presque 2 ans il y a | 1

| A accepté

A répondu
How to fit a multi modal distribution using a weighted sum of PDFs?
I'm glad Bjorn provided an answer that works for you. For future reference, there is a function for fitting mixtures of normal d...

environ 3 ans il y a | 1

A répondu
Nonlinear fit to multiple data sets with shared parameters
@Tai-Yen Chen, if you concatenate, then the sharing is built in. You don't have to account for different subsets of the data fol...

environ 3 ans il y a | 0

A répondu
Warning: Maximum likelihood estimation did not converge. Function evaluation limit exceeded.
Since the random numbers vary, it makes sense that the number of iterations will also vary so the number of warnings may change....

presque 4 ans il y a | 1

| A accepté

A répondu
Nonlinear fit to multiple data sets with shared parameters
My posted answer from 11-Dec-2012 shows how to deal with multiple datasets following roughly the same functional form with param...

presque 4 ans il y a | 0

A répondu
Nonlinear fit to multiple data sets with shared parameters
My posted answer from 11-Dec-2012 shows how to deal with multiple datasets that are roughly similar. That isn't necessary, thoug...

presque 4 ans il y a | 0

A répondu
Curve fitting: seversl curves to one
If you want nhh = a * (n1^b) * (n2^c) * (n3^d) consider taking logs log(nhh) = log(a) + b*log(n1) + c*log(n2) + d...

presque 4 ans il y a | 0

A répondu
Do I purchase Statistics and Machine Learning Toolbox separately from MATLAB license?
There may be other options. If the GUI author can work with you, you may be able to replace use of tdfread by a newer core MATLA...

plus de 5 ans il y a | 0

A répondu
Understanding the Stepwiselm PRemove
Daria, thanks for providing the data, allowing me to reproduce your results. It looks like the documentation is confusing or ...

plus de 5 ans il y a | 0

| A accepté

A répondu
How to obtain Std of Coefficients from Curve Fitting
You can get more information when you invoke the fit command: [obj,gof,opt] = fit(...) This gives the fitted obj, goodne...

presque 6 ans il y a | 2

A répondu
Nonlinear Regression with Errors in X and Y
If you just had y and one or more x variables as predictors, there is information about an errors-in-variables fit here: <htt...

plus de 6 ans il y a | 0

A répondu
Kernel Density estimation with chosen bandwidth, then normalize the density function (cdf) so that integral of cdf from min to max equal to 1 ; then take the first and second derivative of the cdf
You seem to want to do a number of things including integrating and specifying a bandwidth. Maybe this will get you started. ...

plus de 6 ans il y a | 0

A répondu
Unable to Generate Code out of Machine Learning Model
Your screen shot shows generating MATLAB code from the app. That code does training. I think you want to export a compact model ...

plus de 6 ans il y a | 0

A répondu
How to perform stratified 10 fold cross validation for classification in MATLAB?
If you have the Statistics and Machine Learning Toolbox, consider the |cvpartition| function. It can define stratified samples.

plus de 6 ans il y a | 1

| A accepté

A répondu
Conflicting results with multcompare when using the Kruskal-Wallis test on multiple groups
It's sad but true that there can be an overall difference according to one test, another test might not declare specific differe...

plus de 7 ans il y a | 0

A répondu
Log likelihood for each distributions.
It's not clear to me what fails to match with what. These match: >> x = -5*log(rand(100,1)); >> pd = fitdist(x,'weibull'...

plus de 7 ans il y a | 1

| A accepté

A répondu
bayesian logistic regression - slicesample - finding Machine learning parameters
It looks like you have the right idea. But I suspect the calculations are underflowing. You're multiplying thousands of probabil...

plus de 7 ans il y a | 1

A répondu
how to identify a fitglm output as being rank deficient from the resulting object
If your model is f, you could see if f.NumCoefficients > f.NumEstimatedCoefficients

presque 8 ans il y a | 0

A répondu
How to calculate the correlation coefficient between an array and a matrix?
If you have the Statistics and Machine Learning Toolbox, it sounds like you want this: >> x = randn(20,3); >> y = x*[1 0...

presque 8 ans il y a | 0

| A accepté

A répondu
Unable to access Stats toolbox functions
The toolbox has functions anova1, anova2, anovan, and rmanova among others. It does not have functions anova or ranova. Howev...

presque 8 ans il y a | 1

A répondu
plotSlice - what are the numbers below the plots?
The prediction shown at the left of the plot is the value given by the model when the predictors are set to the numbers shown be...

presque 8 ans il y a | 3

| A accepté

A répondu
Does stepwisefit function is able to evaluate using adjusted R-squared instead p-value?
There is a newer function that can do that: load hald stepwiselm(ingredients,heat,'Criterion','adjrsquared')

environ 8 ans il y a | 1

| A accepté

A répondu
Why is fitlm (or regess) and estimation using mathematical equations giving different results?
The first two columns of coefficients have what appear to be exact zeros in row 13, corresponding to column 12 of X because of t...

environ 8 ans il y a | 0

A répondu
What is the difference between the regress function and the fitlm function
Take a look at the 12th and 13th columns of X. It looks to me like the 12th may be constant or may differ by a constant from the...

environ 8 ans il y a | 0

A répondu
Decision trees, only binary branches?
If you fit a classification tree to the famous Fisher iris data, you get this: >> load fisheriris >> f = fitctree(meas,s...

environ 8 ans il y a | 0

| A accepté

A répondu
How can I make DOE design?
Here are two ways to do it. First, specify that you have 5 factors a-e and you want a resolution 5 design. Resolution 5 means yo...

environ 8 ans il y a | 1

A répondu
Separate Drawing of Gaussian Mixture Model
You did something like this: x = [randn(4000,1)/2; 5+2*randn(6000,1)]; f = fitgmdist(x,2); histogram(x,'Normalization...

environ 8 ans il y a | 2

| A accepté

A répondu
clustering, matlab, nominal data
For hierarchical clustering, consider using Hamming distance. Here's an example that isn't realistic but that illustrates what t...

environ 8 ans il y a | 0

A répondu
Why confidence interval distributions overlap the distribution?
A couple of things. First, take out your truncate statements and run the code. You'll see that the "LB" cdf is substantially bel...

environ 8 ans il y a | 0

A répondu
fitnlm w/ table using not all Variables
You can specify modelfun using variable names: load carsmall t = table(MPG,Weight,Origin) nlm = fitnlm(t,'MPG~b1+b2*W...

plus de 8 ans il y a | 0

| A accepté

Charger plus