Réponse apportée
How to replace the missing value using the correlation between x and y?
Omar, if I understand what you are trying to do, I would suggest: Form a reduced dataset where you drop all rows with NANs. Th...

presque 4 ans il y a | 0

Réponse apportée
How to find the row wise p values corresponding to each coefficient of linear regression?
For Type I (i.e., sequential), you have to fit a series of three models, and you need to compute the improvement of each model o...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Generate all possible group scores based on combinations of individuals
Morgan, my point was that "all possible ways" is just too many in this case. By my calculations, if your computer could process...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Parameter estimation of a mixture of a Normal and a Uniform distribution
Not sure how to modify your code, but you can do the estimation with Cupid like this: % Parameters stipulated to be known: Kno...

presque 4 ans il y a | 1

Réponse apportée
how do I input a one-way anova function?
scores = []; % list the 37 scores inside the brackets, all of group 1 first, then group 2, etc group = {'a' 'a' 'a' } % list ...

presque 4 ans il y a | 0

Question


Within a script, can I close or redirect a Windows File Explorer window opened with 'winopen'?
I have a script that processes iteratively through a number of directories, spending a few hours per directory. It would be very...

presque 4 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
Problem when using fitrm() function for ANOVA and getting an incomplete output
I can't check it at the moment, but I think maybe your last line should be ranovatbl = ranova(rm,'WithinModel','Phases')

presque 4 ans il y a | 0

Réponse apportée
Comparing Means from Probability Distributions using aoctool and multcompare
Maybe I am missing something but from your description it sounds like you could compare the mean log(x) values of the different ...

presque 4 ans il y a | 0

Réponse apportée
How to find Sigma Matrix for Bivariate Distribution Given Data
You can't really use normfit to estimate sigma in the manner you are doing it, especially because x1 & x2 have such different nu...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
fprintf's at beginning and end of a function called witihin parfor loop
Thanks Walter, that works perfectly. For anyone else interested, here's the revised version of the original code that works as ...

environ 4 ans il y a | 1

Question


fprintf's at beginning and end of a function called witihin parfor loop
I am trying to write logging-type information to the command window from inside a function that is called within a parfor loop. ...

environ 4 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
How do I loop a command for different variable names?
Another alternative is to make a function that does all of the necessary operations on each vector, and then call that function ...

environ 4 ans il y a | 0

Réponse apportée
How to add random Noise between 2% in the dataset
Do you mean that you want to multiply each value in the dataset by a random number between 1.005 and 1.02, with all random numbe...

environ 4 ans il y a | 0

Réponse apportée
Control for Confounding Variables in a Linear Regression Model
Suppose you have a variable X that you would like to predict from a set of predictors P and you want to control for some other v...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
how does fitglm treat categorical variables?
I don't that is correct. WIth numerical values in the table, I think you have to mark the variables as categorical with somethi...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
how to plot shorter dataset using 'hold on'
Is this what you need? desired_range = 1:200; % here, select the array positions you want to plot plot(T5half(desired_range),...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
How to generate a vector of numbers picked from two groups with the condition that there cannot be more than 2 consecutive numbers from the same group?
If I understand what you are asking, this should be close to what you want: vecLength = 20; % how many numbers you want to gen...

environ 4 ans il y a | 0

Réponse apportée
How to fit multiple distribution on a histogram without normalizing the histogram?
Probably simplest just to plot everything and then use ylim to reset the Y axis limits at the end to whatever you want, somethin...

environ 4 ans il y a | 0

| A accepté

Question


How can I make more efficient use of parallel workers?
My code performs 30 iterations of a task via parfor, with 6 workers in the parallel pool. Each iteration writes files when it s...

environ 4 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
Given a null distribution, how can I calculate a p-value for my test statistic?
The one-tailed p value is just the tail probability of your original unshuffled difference relative to the null distribution tha...

environ 4 ans il y a | 0

Réponse apportée
How to turn a function handle with 3 inputs (1 variable and 2 parameters) and then assign the inputs parameters and get a function handle with one input? ?
Not sure I understand the situation, but this sounds to me like a case where an OO approach could be very helpful. Consider: cl...

environ 4 ans il y a | 0

Réponse apportée
Repeated measures ANOVA Matlab (Statistic)
% Note the transpose operator: single-column vectors are more convenient. A = [10 11 13 16 15 18 17 16 11 12]'; B = [20 22 21 ...

environ 4 ans il y a | 0

| A accepté

Réponse apportée
How to fit an uniform distribution to a histogram?
histogram(data, numBars); avgHeight = numel(data)/numBars; hold on; plot([min(data), max(data)],[avgHeight, avgHeight])

environ 4 ans il y a | 1

Réponse apportée
Spearman correlation fails in ranking strings
The first two inputs to the corr command have to be the numerical values that are to be correlated, so you will want something l...

environ 4 ans il y a | 1

| A accepté

Réponse apportée
I want to compute mean median and mode for the distribution from its c.d.f.
The median is the value at p=0.50, which you already seem to have in your table. You can't really compute the mean and mode fr...

environ 4 ans il y a | 0

Réponse apportée
How to calculate StdErr for intercepts and slopes in a multivariate ANCOVA (function ANOVAN() with continuous independent variable)?
If you set up dummy variables to code your categorical independent variables, you can then do analysis of covariance with fitlm....

environ 4 ans il y a | 2

| A accepté

Réponse apportée
Is it appropriate to use ranksum to compare statistical means for time series data?
The ranksum test ignores the sequential order of scores, so for example ranksum(x,y) will give you the same answer no matter how...

plus de 4 ans il y a | 0

Réponse apportée
pca with more than one grouping variable
gscatter will accept multiple grouping variables, in your case organism & dead/alive. There is an example in the gscatter docu...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Distribute a sum using binomial distribution
If I understand correctly, it is fine to use binornd with n = row total. It sounds like that is what was done in the paper. j...

plus de 4 ans il y a | 0

Réponse apportée
Why is fitlm affected by variable scale?
Your understanding is correct for linear regression but your model is nonlinear because of the interaction terms. Consider: zX ...

plus de 4 ans il y a | 0

Charger plus