draw a histogram from an array

I now have an array
date visitors
------ --------
1/1 5
1/2 10
1/3 12
What is the simplest way to draw a histogram of visitors?

 Respuesta aceptada

Image Analyst
Image Analyst el 16 de Jul. de 2022
Editada: Image Analyst el 16 de Jul. de 2022
Did you try
bar(t.Data, t.Visitors);
grid on;
xlabel('Date');
ylabel('Number of Visitors');
This assumes that your histogram is in a table like you showed.

2 comentarios

alpedhuez
alpedhuez el 16 de Jul. de 2022
histogram(t.Visitors)
Image Analyst
Image Analyst el 18 de Jul. de 2022
You'd need more than 3 samples. But if you have like hundreds of days, then that could get you a distribution of how many people visited during a certain interval of time (like one day or one week).

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Versión

R2022a

Etiquetas

Preguntada:

el 16 de Jul. de 2022

Comentada:

el 18 de Jul. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by