Rank: 556 based on 123 downloads (last 30 days) and 6 files submitted
photo

Jonas

E-mail

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Files Posted by Jonas View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
14 Dec 2011 Screenshot Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas histogram, distributions, plotting, pick of the week, potw 62 11
  • 5.0
5.0 | 12 ratings
02 Jun 2010 Screenshot Map texture to patch patchTexture maps a texture onto a patch object Author: Jonas graphics, plotting, patch, texture 9 0
26 Apr 2010 A dice roller for Matlab Everyone needs to roll dice or flip a coin now and then. This is the program to make it easy. Author: Jonas game, regular expressions, dice 11 3
  • 5.0
5.0 | 1 rating
01 Apr 2010 Screenshot Subversion GUI GUI for command-line subversion client Author: Jonas svn, subversion, gui 7 0
31 Mar 2010 Screenshot Plot average line plotAverage plots an average line into the data. Author: Jonas average plot, data exploration, trendline 27 0
Comments and Ratings by Jonas View all
Updated File Comments Rating
14 Dec 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas

@Yuri: I have implemented your suggestion (though I start the histograms from the very left or right side, respectively), and fixed the previous bug.

01 Nov 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas

@Yuri Kotliarov: Currently, the only workaround is to call ksdensity outside of distributionPlot to ensure that the smoothing uses the same kernel:

x = zeros(10,1);
y = x+randn(10,1)*0.1;
[yy(:,2),yy(:,1)] = ksdensity(y,'width',0.01);
[xx(:,2),xx(:,1)] = ksdensity(x,'width',0.01);
distributionPlot({xx,yy},'showMM',false)

Unfortunately, the showMM option is bugged when you supply your own histograms at the moment, so you have to set that option to false.

19 Aug 2011 MorphTool An interactive environment for morphologically operating on images. Author: Brett Shoelson

Same error here as Bojan - StrelTool seems to be missing from the package, which makes the potentially awesome submission unusable.

21 Jun 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas

@Yuri: The new version of distributionPlot supports grouped data.

05 Apr 2011 Optimization Tips and Tricks Tips and tricks for use of the optimization toolbox, linear and nonlinear regression. Author: John D'Errico

Should have rated this as 5 a long time ago. This is a most excellent resource, and pleas.m has helped me tremendously.

Comments and Ratings on Jonas' Files View all
Updated File Comment by Comments Rating
14 Dec 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas Jonas

@Yuri: I have implemented your suggestion (though I start the histograms from the very left or right side, respectively), and fixed the previous bug.

16 Nov 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas Kotliarov, Yuri

@Jonas: Thanks for the answer. May I suggest a new feature? It would be nice to draw histogram at certain direction. Currently it's only centered, but also can be left- or right- directed. All you need to change is xBase variable at line 401: 0.5 to 0 for left direction, -0.5 to 0 for right direction. For someone it's easier to understand when the distributions looks like turned histograms.

01 Nov 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas Jonas

@Yuri Kotliarov: Currently, the only workaround is to call ksdensity outside of distributionPlot to ensure that the smoothing uses the same kernel:

x = zeros(10,1);
y = x+randn(10,1)*0.1;
[yy(:,2),yy(:,1)] = ksdensity(y,'width',0.01);
[xx(:,2),xx(:,1)] = ksdensity(x,'width',0.01);
distributionPlot({xx,yy},'showMM',false)

Unfortunately, the showMM option is bugged when you supply your own histograms at the moment, so you have to set that option to false.

31 Oct 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas Kotliarov, Yuri

@Jonas: I have problem with smoothing (histOpt=1) when all values for a group are the same. In this case the distribution plot is very wide comparing to the same data with a little variance.
For example:
x = zeros(10,1);
y = x+randn(10,1)*0.1;
distributionPlot({x,y},'histOpt',1,'addSpread',1)

The same happens with a few outliers in x. I understand it's probably how ksdensity function works. But can you do anything to make the above cases comparable?

07 Jul 2011 Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas Alexander
Top Tags Applied by Jonas
plotting, average plot, coding, data exploration, dice
Files Tagged by Jonas View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
14 Dec 2011 Screenshot Violin Plots for plotting multiple distributions (distributionPlot.m) Function for plotting multiple histograms side-by-side in 2D - better than boxplot. Author: Jonas histogram, distributions, plotting, pick of the week, potw 62 11
  • 5.0
5.0 | 12 ratings
02 Jun 2010 Screenshot Map texture to patch patchTexture maps a texture onto a patch object Author: Jonas graphics, plotting, patch, texture 9 0
26 Apr 2010 A dice roller for Matlab Everyone needs to roll dice or flip a coin now and then. This is the program to make it easy. Author: Jonas game, regular expressions, dice 11 3
  • 5.0
5.0 | 1 rating
01 Apr 2010 Screenshot Subversion GUI GUI for command-line subversion client Author: Jonas svn, subversion, gui 7 0
31 Mar 2010 Screenshot Plot average line plotAverage plots an average line into the data. Author: Jonas average plot, data exploration, trendline 27 0

Contact us at files@mathworks.com