How to plot a swarm chart with no specific x-values?
이전 댓글 표시
Hi everyone,
I have a huge dataset, around 1 million values in a column. The range of these values are limited. They, for example, fluctuate between -100 to +100 (I need to find these two values by min and max). The fluctuation is also very erratic (there might be some patterns though).
So, I was having an idea to use swarm chart and plot the distribution of this dataset on something like a swarm chart. Do you think it would be possible using swarm chart or any other chart type on MATLAB? (I know we can use histogram but something like what I described would be easier to understand for my audience)
I mean something like this:

댓글 수: 5
Russel Burgess
2021년 3월 12일
Wolfgang McCormack
2021년 3월 12일
Russel Burgess
2021년 3월 14일
I'm not sure if it's exactly what you're after, but you can just set the x values to all be 0, for example:
x = zeros(1e3,1);
y = randn(1e3,1);
swarmchart(x,y);
Produces:

Wolfgang McCormack
2021년 3월 14일
Wolfgang McCormack
2021년 3월 15일
채택된 답변
추가 답변 (1개)
This Github offering has worked pretty well for me:
댓글 수: 5
Wolfgang McCormack
2021년 3월 12일
Wolfgang McCormack
2021년 3월 12일
Matt J
2021년 3월 12일
I guess you figured it out (sinc eyou Accept-clicked the answer)?
Wolfgang McCormack
2021년 3월 14일
카테고리
도움말 센터 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
