Problem 55420. Power Outages Histogram
Solution Stats
Problem Comments
-
6 Comments
The function is not executed for any of the tests.
Execute scratch pad:
T = readtable("outages.csv","TextType","string");
g__= plotOutages(T);
We must use the scratch pad, as said by David Hill, and return the histogram with gcf(). This should probably be added to the problem's description.
i am so confused, i dont think any of the test cases actually execute the function ?
@March 7th, the part of the test suite where the function is called is before the first test and so isn't visible.
Dear all
"assert" had been defined like below;
assert(isequal(g__.Children.Children.Type,'categoricalhistogram'))
If you want to pass the tests, you should define you function like below
wrong function:
function f = plotOutages(T)
end
Right function
function g__ = plotOutages(T)
end
Solution Comments
Show commentsProblem Recent Solvers107
Suggested Problems
-
Find the numeric mean of the prime numbers in a matrix.
8909 Solvers
-
Return fibonacci sequence do not use loop and condition
547 Solvers
-
739 Solvers
-
314 Solvers
-
Partial Pressure of Water Vapor from Relative Humidity
107 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!