
Jeff Miller
Statistics
RANK
88
of 262.591
REPUTATION
1.476
CONTRIBUTIONS
18 Questions
590 Answers
ANSWER ACCEPTANCE
83.33%
VOTES RECEIVED
164
RANK
5.723 of 17.975
REPUTATION
184
AVERAGE RATING
4.70
CONTRIBUTIONS
8 Files
DOWNLOADS
16
ALL TIME DOWNLOADS
1704
RANK
of 113.607
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Conditional fixed effects for glme
I think this is the key sentence from the example page: "Specify the dummy variable encoding as 'effects', so the dummy variable...
5 dagen ago | 0
Each PARFOR Worker Writes to the Same File
Maybe have each worker write to its own output file and then assemble those after? This answer shows how to get the id for each...
6 dagen ago | 0
Fitting bimodal wind data using Weibull mixture in matlab
Your sample graph is not a probability distribution, Weibull or otherwise. For a probability distribution, the vertical axis al...
11 dagen ago | 0
Question
immediate refresh function for cd?
When I run this code in a script: cd(my_folder_name) % what goes here? pause(15) the current folder window doesn't update un...
18 dagen ago | 0 answers | 2
0
answersStatistical distribution comparison for two datasets
You could use manova if you just wanted to compare the centroids of the multivariate distributions, but it sounds like you want ...
20 dagen ago | 0
| accepted
How to robustly set class object properties in the class constructor when using name-value approach without handling them one-by-one?
One option might be something like this: % How to make... fnames = fieldnames(namedArgs); for ifield=1:length(fnames) s ...
25 dagen ago | 1
| accepted
How can i use a "list of variablennames" to calculate something?
One convenient option if you really want to do something like this is to use a structure to hold all of the variables that you w...
ongeveer 2 maanden ago | 1
how to delete outliers data for 15 person Separately?
I think I see the issue now. Maybe this is better: DATA1=[]; SUBJECT = []; for i = 1:15 data1 = load(strcat(strcat('park...
ongeveer 2 maanden ago | 0
| accepted
How do I Plot a Regression Line (not simple regression) on gscatter?
Something like this should work, after your gscatter: lowX = 0; % set low & hi X to span the x-axis range that you want the l...
ongeveer 2 maanden ago | 0
What is the orthodox precedure of evaluating/determining the type of a distribution? And How to fit it into a normal distribution with skewness and kurtosis?
Unfortunately, trial-and-error with fitting different distributions is the only way to find out what distribution provides the b...
ongeveer 2 maanden ago | 0
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...
ongeveer 2 maanden ago | 0
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...
ongeveer 2 maanden ago | 0
| accepted
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...
ongeveer 2 maanden ago | 0
| accepted
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...
ongeveer 2 maanden ago | 1
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 ...
2 maanden ago | 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...
3 maanden ago | 2 answers | 0
2
answersProblem 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')
3 maanden ago | 0
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 ...
4 maanden ago | 0
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...
4 maanden ago | 0
| accepted
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 ...
5 maanden ago | 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. ...
5 maanden ago | 2 answers | 0
2
answersHow 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 ...
5 maanden ago | 0
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...
5 maanden ago | 0
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...
5 maanden ago | 0
| accepted
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...
5 maanden ago | 0
| accepted
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),...
5 maanden ago | 0
| accepted
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...
6 maanden ago | 0
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...
6 maanden ago | 0
| accepted
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...
6 maanden ago | 1 answer | 0
1
answerGiven 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...
6 maanden ago | 0