Problems trying to use bar

3 visualizaciones (últimos 30 días)
Borja Zamarreño
Borja Zamarreño el 10 de Jun. de 2020
Comentada: Borja Zamarreño el 10 de Jun. de 2020
Hello im suffering some problem while trying to plot my data into bars. i have an array(7000x2)
data=xlsread('data.xlsx');
a= sortrows(data);
a(a(:,2) == 0, :) = [] ;
[U1,~,G1] = uniquetol(a(:,1));
S1 = accumarray(G1(:),a(:,2));
M1 = [U1,S1];
figure
plot(M1(:,1),M1(:,2))
ylabel('data')
xlabel('alpha')
What i want to obtain is the same figure but instead of lines with bars. I tried using bar instead of plot but nothing is showing.
Thank u in advance.
  2 comentarios
Rik
Rik el 10 de Jun. de 2020
Those bars are just too thin for you to see:
bar(M1(:,1),M1(:,2)),hold on
plot(M1(:,1),M1(:,2),'.b')
xlim([0 0.01])
Borja Zamarreño
Borja Zamarreño el 10 de Jun. de 2020
Thank for your response, there is no option to wide those bars then?

Iniciar sesión para comentar.

Respuesta aceptada

Rik
Rik el 10 de Jun. de 2020
You can use the function below to create fake bars by using plot. This function accepts (nearly) all input arguments that plot accepts.
data=xlsread('data.xlsx');
a= sortrows(data);
a(a(:,2) == 0, :) = [] ;
[U1,~,G1] = uniquetol(a(:,1));
S1 = accumarray(G1(:),a(:,2));
M1 = [U1,S1];
figure(1),clf(1)
subplot(1,2,1)
bar(M1(:,1),M1(:,2)),hold on
plot(M1(:,1),M1(:,2),'.b')
xlim([0 0.01])
title('zoomed in')
subplot(1,2,2)
linebar(M1(:,1),M1(:,2),'b')
title('fake bars with lines')
function linebar(x,y,varargin)
x_=x(:);
sz=size(x_);
x_=[NaN(sz) x_ x_]';
y_=[NaN(sz) zeros(sz) y(:)]';
plot(x_,y_,varargin{:})
end
You can vastly increase the perfomance if you make it a continuous line by returning to y=0 instead of using NaN, but that is up to you.
  1 comentario
Borja Zamarreño
Borja Zamarreño el 10 de Jun. de 2020
Thank u very much for your help i will try it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Distribution Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by