| Date | File | Comment by | Comment | Rating |
|---|---|---|---|---|
| 27 Oct 2009 | ROC curve compute a ROC curve | Kaftan, Jens | Hi Giuseppe.
Best,
|
|
| 23 Oct 2009 | MyFisher22 A very compact routine for Fisher's exact test on 2x2 matrix; power and sample sizes calculation | Giaccari, Luigi | ||
| 20 Oct 2009 | McNemar est Perform the McNemar test on a 2x2 matrix | Skynet | Thanks for this file. I used it to confirm the results of my own calculations. Note that errors that you throw probably shouldn't use the term "Warning" in the error text, because that is misleading. |
|
| 14 Oct 2009 | ISLEAP Function Calculate leap year | Simon, Jan | Descriptive help, reliable error checking, new version is really efficient, does exactly what the name says. |
|
| 10 Oct 2009 | Clinical Test Performance The test calculate the performance of a clinical test based on the Bayes theorem | Simon, Jan | Exhaustively commented, so you get not only the resulting numbers, but also the exact description of what they mean, if you read the source. |
|
| 05 Oct 2009 | ISLEAP Function Calculate leap year | Simon, Jan | CLOCK -> DATE -> DATESTR -> STR2DOUBLE waste a lot of time: str2double(datestr(date,10))
Checking the number of inputs can be done easier and faster without VARARGIN, e.g.:
The permanent disabling of the warning for logical conversion is not secure. You can omit this by simplifying the engine - instead of:
|
|
| 25 Sep 2009 | Fleiss'es kappa Compute the Fleiss'es kappa for multiple raters | ADEWUNMI, Adrian | With much pleasure, I am pleased to announce I have solved the problem . Thanks to Giuseppe Cardillo for this matlab function.....good job. |
|
| 25 Sep 2009 | Fleiss'es kappa Compute the Fleiss'es kappa for multiple raters | ADEWUNMI, Adrian | Whenever I imput any other matrix than a 5 x 10 matrix into matlab, using your function "fleiss(X)"it gives an error message as follows: EDU>> fleiss(X)
Can you tell me how to fix this?
|
|
| 09 Sep 2009 | Logrank Comparing survival curves of two groups using the log rank test | Cardillo, Giuseppe | At the moment, there is not on FEX the new uploaded file (this takes 1-2 days). If you contact me in private, I'll send you the file as an attach |
|
| 09 Sep 2009 | Logrank Comparing survival curves of two groups using the log rank test | cyclist, the | Thanks for the really quick reply. I appreciate it. However, the program still crashes for me, with the same error, when I try the syntax you suggest. Maybe the version on the File Exchange is not quite the same as yours? |
|
| 09 Sep 2009 | Logrank Comparing survival curves of two groups using the log rank test | Cardillo, Giuseppe | You are partially right. If you use only the first column, the routine crashes because the informations in the second column are mandatory. If you want no censored data:
Anyway, a bug was present but I fixed it and upload the new version. |
|
| 08 Sep 2009 | Logrank Comparing survival curves of two groups using the log rank test | cyclist, the | It seems to me that this function does not work for the case when none of the data are censored. (That shouldn't be a problem, should it?) For example, using only the first columns of your sample x1 and x2: >> logrank(x1(:,1),x2(:,1)) causes a crash for me. |
|
| 04 Sep 2009 | MyRegression A simple function on LS linear regression with many informative outputs | Ben | ||
| 21 Aug 2009 | Testt Calculate the Student t Test for unequal or equal samples size, unpaired or paired samples. | Ben | Thanks |
|
| 04 Aug 2009 | Testt Calculate the Student t Test for unequal or equal samples size, unpaired or paired samples. | Chandler, john | can the p-value, etc be passed onto variables? |
|
| 29 Jul 2009 | ROC curve compute a ROC curve | cabrego | I tested the new release and it is agreeing with other codes now. Michael, you may also wish to verify that the new version is working correctly. I also think adding the cut off points as an additional x or y axis would be very useful to understand the trade off between sensitivity and sensibility. |
|
| 24 Jul 2009 | ROC curve compute a ROC curve | Michael | Agree with cabrego, this algorithm does not work correctly. Depending on the input data, it generates ROC curves with specificity and sensitivity backward. I believe this is because elements that fall below a cutoff value (I in the code) are called "true positives" when they should be "false positives". The convention is that higher values of a test are abnormal (positive). I confirmed that other software (online ROC calculator, ROCR in R, STATA) does not behave this way with the same input data and all others produce correct results. Use at your own risk. |
|
| 16 Jul 2009 | ROC curve compute a ROC curve | cabrego | Nice function, but I think it may have a bug, I am getting different results for significantly overlaping distributions when I compare to medcalc, and online calculators. email me for more details: cpabrego@gmail.com |
|
| 25 Jun 2009 | ROC curve compute a ROC curve | Vo, Phong | Thank you very much! |
|
| 12 Jun 2009 | Logrank Comparing survival curves of two groups using the log rank test | Bl, En | Thanks. |
|
| 08 Jun 2009 | Logrank Comparing survival curves of two groups using the log rank test | Cardillo, Giuseppe | I have corrected the bug and uploaded the new version. Anyway, with all these censored data, it is difficult to assess differences.... |
|
| 01 Jun 2009 | Equinoxes and Solstices compute the dates of equinoxes and solstices | Burkey, Jeff | Great function! While the level of accuracy does not affect my needs, you may want to let others know if they are in need to to the minute or second, may want to validate the results. Comparing this functions results to the US Naval Observatory, the results differ by approximately 1-minute. I'm guessing this is an artifact of matlab and complier precision. Anything dealing with astronomy and floating point precision becomes significant. |
|
| 30 May 2009 | Logrank Comparing survival curves of two groups using the log rank test | Bl, En | Here is the data:
sorry for the late reply. |
|
| 22 May 2009 | Logrank Comparing survival curves of two groups using the log rank test | Cardillo, Giuseppe | Perhaps, if you email me the data I can understand the error. I think that your input data matrix are in a wrong format. |
|
| 19 May 2009 | Logrank Comparing survival curves of two groups using the log rank test | Bl, En | I get this error:
Error in ==> logrank at 157
I debugged it and J=[] . |
|
| 15 Apr 2009 | Testt Calculate the Student t Test for unequal or equal samples size, unpaired or paired samples. | Cardillo, Giuseppe | You have partially right. I have fixed the bug and uploaded the new file. Thank you very much! |
|
| 14 Apr 2009 | Testt Calculate the Student t Test for unequal or equal samples size, unpaired or paired samples. | Berg, Rune W | There's a small bug in the procedure that prevents you chose 2-tailed test. Its in line 109. As far as i can see you need to change it to: 109: if tail ~= 0 && tail ~= 1 && tail ~= 2 %check if tst is 0 or 1 or 2 |
|
| 02 Feb 2009 | Testt Calculate the Student t Test for unequal or equal samples size, unpaired or paired samples. | keihaninejad, shiva | this m file is good,easy and useful.many thanks Giuseppe |
|
| 20 Jan 2009 | ISLEAP Function Calculate leap year | Petaccio, Vince | Cool, just what I needed. Thanks! :o] |
|
| 06 Jan 2009 | Sequential analysis Perform a sequential analysis to test two conditions. | Zhang, Kay | I cannot use it |
|
| 12 Dec 2008 | MyFisher24 A very compact routine to compute Fisher's exact test on a 2x4 matrix | Jon | Giuseppe thank you for your quick response.
|
|
| 12 Dec 2008 | MyFisher24 A very compact routine to compute Fisher's exact test on a 2x4 matrix | Cardillo, Giuseppe | Jon was right. I have fixed the bug and uploaded the new version |
|
| 10 Dec 2008 | MyFisher24 A very compact routine to compute Fisher's exact test on a 2x4 matrix | Jon | I get error messages for some data.
I hope this can be fixed?
|
|
| 28 Nov 2008 | Cohen's kappa Compute the Cohen's kappa | Karelitz, tzur | I think there is an error in the quadratic loop. small caps j needs to be J. |
|
| 20 Nov 2008 | ROC curve compute a ROC curve | Pawel | ||
| 17 Aug 2008 | The chaotic rhythm of life Explore the May-Oster-Yorke law | sanchez, nathaly | good |
|
| 11 Aug 2008 | ROC curve compute a ROC curve | Eibl, Günther | easy to use! |
|
| 13 Jul 2008 | ROC curve compute a ROC curve | García Bascuñán, Diego | Good function |
|
| 13 Jul 2008 | Testt Calculate the Student t Test for unequal or equal samples size, unpaired or paired samples. | García Bascuñán, Diego | If you get the powerStudent, testt works. It's fantastic do it so easily!!! |
|
| 24 Jun 2008 | ROC curve compute a ROC curve | Phan, Truc | ||
| 10 Jun 2008 | Dunn's test Dunn's procedure for multiple, non parametric, comparisons | Makhlof, Abdallah | thank you |
|
| 04 Jun 2008 | ROC curve compute a ROC curve | HAMADICHAREF, Brahim | Good stuff. |
|
| 07 May 2008 | MyFisher23 A very compact routine for Fisher's exact test on 2x3 contingency table | Gandhi, Shilpa | Fast, provides good output display. Exactly what I needed. Thanks! |
|
| 27 Mar 2008 | Coins Is there an algorithm to use the max numbers of coins in your pocket? | Shvorob, Dimitri | Is there an algorithm to use the max numbers of coins? Of course there is, as anybody who has taken half a course in dynamic programming will tell you. Your own code solves the problem in less than 10 lines :) |
|
| 13 Mar 2008 | MyRegression A simple function on LS linear regression with many informative outputs | C, C | It might already be in stat toolbox, but for those of use that can't afford the toolbox, this is great. |
|
| 07 Mar 2008 | Wilcoxon test non parametric Wilcoxon test for two paired samples | Trujillo-Ortiz, Antonio | Only to correct and clarify my previous comment, and to recall to all that, with respect to the non parametric tests between two samples, two classes exist: (1) Independent, that can be both of the same size or not, being been able to utilize the Mann-Whitneys test or the Wilcoxon ranks test; and (2) Dependent, that necessarily them should be of the same size, since is the same sample observed in two different circumstances or times, where applies the Wilcoxon signs and ranks test. Also, I should clarify that in the personal thing I do not use the term unpaired to assign independent samples, since unpaired is synonym of unbalanced; neither paired for assign dependent, since paired is synonym of balanced. This by the fundamental reason that the concepts of independent or dependent arise for the itself nature of the data, and not because they are unpaired or paired. The m-file here developed by Giuseppe it is a Wilcoxons test for two dependent samples for it is correct his comment that the data vectors must have the same length, and, if it is not, delete those uncoupled data. There isn't any other solutions. So, my previous review comment is obsolete and should be ignored. Thanks, Prof. Antonio Trujillo-Ortiz |
|
| 05 Mar 2008 | Wilcoxon test non parametric Wilcoxon test for two paired samples | Trujillo-Ortiz, Antonio | Hi Giuseppe, You are wrong. According to the non-parametric statistics theoretic fundamentals, there are a two Wilcoxon tests:(1)Wilcoxon Rank Test for two unpaired samples, and(2) Wilcoxon Sign-Rank Test for two paired samples. You must to review them. Yours, Prof. Antonio Trujillo-Ortiz |
|
| 19 Jan 2008 | Dunn's test Dunn's procedure for multiple, non parametric, comparisons | Akkus, Ozan | The code is writen very clearly, instructions are detailed and to the point. It did not take me more than 5 minutes to get run the test. |
|
| 27 Dec 2007 | Holm-Sidak t-test Holm-Sidak t-test for multiple comparisons | Norrell, Gilbert | This file is similar to multcompare matlab function, but provides much more clear outputs. |
|
| 22 Dec 2007 | Tolkiencal Convert a date into the Shire calendar | Observer, A FEX | I agree with Urs. This submission does not provide anything valuable or useful (in terms of contents or coding) to the Matlab community. Yet it is rated amazingly high by a few of those people, who are usually very quick in annihilating such surrealistic contributions. The fact that a guru(?) has an emotional bond with the idea behind a program certainly cannot be sufficient to give out a 'reward'.
|
|
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.
Contact us at files@mathworks.com