why the legends are showing same colour if i have 1 than 1 data ? if only 1 data then the legend is showing correctly.
how to assign x as each day of month like 1 to 31st july, i need "x" only as date realtime. not as datetime

 Respuesta aceptada

Scott MacKenzie
Scott MacKenzie el 6 de Jul. de 2021
Editada: Scott MacKenzie el 6 de Jul. de 2021

1 voto

Change line 3 from
t = datetime;
to
t = linspace(datetime('yesterday'), datetime('tomorrow'), length(InspectionPlan));
For plotting, t needs to be the same size as InspectionPlan. The line above achieves this, but ideally you should probably intialize t so each entry is the date/time of the corresponding entry in InspectionPlan.

3 comentarios

Rizwan Khan
Rizwan Khan el 13 de Jul. de 2021
% Inspection Demand vs Inspection Executed Trend
InspectionPlan = thingSpeakRead(1421679, 'Fields', 1, 'Numpoints', 100);
t = linspace(datetime('yesterday'), datetime('tomorrow'), length(InspectionPlan));
w1=.5;
hold on
bar(t,InspectionPlan,w1,'FaceColor','r');
InspectionExecuted = thingSpeakRead(1421679, 'Fields', 2, 'Numpoints', 100);
w2=.25;
bar(t,InspectionExecuted,w2,'FaceColor','y');
hold off
grid on
ylabel('Quantity(products)')
legend('InspectionPlan','InspectionExecuted','Location','northwest');
xtickformat('yyyy-MM-dd')
Rizwan Khan
Rizwan Khan el 13 de Jul. de 2021
still the dates does not matching while ploting.
i am ploting field1 vs field2
Rizwan Khan
Rizwan Khan el 13 de Jul. de 2021
Data enetred in 2nd july but plot is showing from 12th july

Iniciar sesión para comentar.

Más respuestas (1)

Christopher Stapels
Christopher Stapels el 6 de Jul. de 2021

0 votos

This looks like an interesteing application. Can you tell us more about what you are monitoring?

Comunidades de usuarios

Más respuestas en  ThingSpeak Community

Etiquetas

Preguntada:

el 6 de Jul. de 2021

Comentada:

el 13 de Jul. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by