plot not displaying figure

1 次查看(过去 30 天)
i have table which has datetime and sub_metering_1 as two variables on table. I wrote code to plot the figure but it is not showing
if (data_useful.DateTime.Hour==8)
figure()
plot(DateTime, Sub_metering_1)
end
  2 个评论
dpb
dpb 2021-5-1
Your "if" is not getting executed -- IF is True iff all elements of the logical expression are true -- and you undoubtedly have data in the table that are not in the eighth hour as well as some that are.
It's not clear for sure what you do intend, but
is8=(data_useful.DateTime.Hour==8); % logical addressing for Hour==8
if any(is8) % will match if are any data at Hour==8
figure()
plot(data_useful.DateTime(is8), data_useful.Sub_metering_1(is8)) % plot the subset of data
end
While the above will (probably) work to do the one specific thing, it's generally bad practice to bury "magic" constants like the 8 above in code; use variables instead. Then you will be able to change the wanted hour to be plotted simply by changing some data, perhaps tying it to user input or an argument in a function even, without having to change the code itself.
Ram Basnet
Ram Basnet 2021-5-2
isa==(data1.DateTime.Hour==8)
if any(isa)
meter_readings_cluster_few = data1.Sub_metering_1;
dates_table_few= data1.DateTime
end
plot(dates_table_few, meter_readings_cluster_few)

请先登录,再进行评论。

回答(1 个)

Saravanakumar Chandrasekaran
You are trying to a logical check for data_useful.DateTime.Hour==8. so at all times it is getting failed.
in the suggestion provided by dpb, you have wrongly included ==
i.e., the line should be
isa = (data1.DateTime.Hour==8)
i hope if u correct the above line ,it will work.

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by