How to display histogram

38 次查看(过去 30 天)
Azam Ikhwal
Azam Ikhwal 2022-5-11
回答: Yash 2024-8-28
Cannot display the histogram. Basicly, I want to plot the data from CSV file. It worked on other csv file.
data = csvread('CorelationCoefficient_All.csv');
x = data(:,1);
histogram(x);
  3 个评论
Azam Ikhwal
Azam Ikhwal 2022-5-16
Apologies for the delayed response. My csv file was so big even after compressed. So I deleted few lines of data but still keep the format the same.
Mathieu NOE
Mathieu NOE 2022-5-16
hello
It works ! (on my R2020b)
where is your issue ? what is the rror message ?

请先登录,再进行评论。

回答(1 个)

Yash
Yash 2024-8-28
Hello Azam,
I tried executing the given code with the provided CSV file. I am able to get the histogram as shown below:
There could be several reasons why you are facing this issue. Here are some possible suggestions to troubleshoot the problem:
1. File Path: Ensure that the path to the CSV file is correct. If the file is not in the current working directory, you should provide the full path to the file.
2. Outdated function: In the newer MATLAB releases, "csvread" is not recommended. You should consider using "readmatrix" or "readtable" instead. Please find the following relevant documentations:
3. Error Messages: Please check for any error messages in MATLAB’s command window. These messages can provide clues about what might be going wrong.
4. Permissions: Check if there are any permission issues with accessing the file.
If none of these suggestions resolve the issue, kindly provide more details about the error message or behavior you are encountering so that we can assist further.

类别

Help CenterFile Exchange 中查找有关 Histograms 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by