vectors are not same for ploting
2 views (last 30 days)
Show older comments
ind=strcmpi(names,'United States');
cases=covid_cases(ind,:)
deaths=covid_deaths(ind,:)
daily_cases=dailycases(ind,:)
fatalityr=deaths./cases;
fatality_per = fatalityr*100;
moving_avg=movmean(daily_cases,10)
scatter(moving_avg,fatality_per(:,end-1))
moving_avg 57*429 double
fatality_per 57*430 double
vector are not same what should be the modification in order to make scatter plot
0 Comments
Accepted Answer
Cris LaPierre
on 29 May 2021
Make moving_avg a 57x429 array, or make fatality_per a 57x429 array.
It appears you have more columns of data in dailycases than you do in covid_cases and covid_deaths
5 Comments
Image Analyst
on 30 May 2021
@Muhammad SULAMAN, what do the rows represent in your array? What do the columns represent? Does it make sense to lump them all together into one massive scatterplot? Or would it be more understandable to scatter just two corresponding rows or columns against each other?
More Answers (0)
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!