現在この質問をフォロー中です
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます。
Error using plot Invalid data argument (Data from Excel)
5 ビュー (過去 30 日間)
古いコメントを表示
Nate Mays
2021 年 3 月 9 日
Hello,
I'm having a problem as I try to plot two columns of data from excel (temperature over time). I keep getting the following error. (Error using plot
Invalid data argument.) My code is below.
%%Use readtable for importing data from excel%%
WData = readtable('WeatherData1.xlsx');
%(1)Determine Temperature Variations throughout the year.
%Extact High temperatures
TempH = WData{2:366,2};
y = TempH;
%Extract Low temperatures
TempL = WData{2:366,4};
%Extract Avg Temperatures
Tempavg = WData{2:366,3};
%Extract the dates
Dates = WData{2:366,1};
x = Dates;
%plot the temperture variations over the year
plot(x,y)
23 件のコメント
Walter Roberson
2021 年 3 月 9 日
what shows up for class(Dates)? I would not be astonished if it were a cell array of character vectors: depending on how the time is represented in Excel, it might not be interpreted as a datetime.
Also which release are you using?
Nate Mays
2021 年 3 月 9 日
I attaced an image of what shows up and I'm currenty using R2018b from my school. In excell its set as Date.
Walter Roberson
2021 年 3 月 9 日
and could you confirm that y is numeric?
R2018b is new enough that datetime plots were supported.
You could experiment with
plot(datenum(x), y)
Cris LaPierre
2021 年 3 月 9 日
Please share the full error message (all the red text).
Also, what data type is y?
Nate Mays
2021 年 3 月 10 日
Error using plot
Invalid data argument.
Error in WeatherExtractionScript (line 21)
plot(x,y)
Walter Roberson
2021 年 3 月 10 日
y is not numeric, y is cell!
Please attach an (extract from) 'WeatherData1.xlsx'
Nate Mays
2021 年 3 月 10 日
Here is the document. I checked the excel document to make sure that the column with the dates are set as dates and the columns with the weather data is set as numbers.
Cris LaPierre
2021 年 3 月 10 日
The only issue I see is that you are indexing 266 rows but you only have 265. What version of MATLAB are you using?
%%Use readtable for importing data from excel%%
WData = readtable('WeatherData1.xlsx');
Warning: Column headers from the file were modified to make them valid MATLAB identifiers before creating variable names for the table. The original column headers are saved in the VariableDescriptions property.
Set 'VariableNamingRule' to 'preserve' to use the original column headers as table variable names.
Set 'VariableNamingRule' to 'preserve' to use the original column headers as table variable names.
%(1)Determine Temperature Variations throughout the year.
%Extact High temperatures
TempH = WData{2:365,2};
y = TempH;
%Extract Low temperatures
TempL = WData{2:365,4};
%Extract Avg Temperatures
Tempavg = WData{2:365,3};
%Extract the dates
Dates = WData{2:365,1};
x = Dates;
%plot the temperture variations over the year
plot(x,y)
Nate Mays
2021 年 3 月 10 日
I'm using R2018b, I changed the 366b to 365 but still getting the same error. is that the only thing you changed?
Mathieu NOE
2021 年 3 月 10 日
hello
your code works fine with my R2020b
what do you get as table in WData ?
I get :
WData =
365×20 table
Date Temp____F_ Var3 Var4 DewPoin0___F_ Var6 Var7 Humidity____ Var9 Var10 SeaLevelPress___in_ Var12 Var13 Visibility__mi_ Var15 Var16 Wind__mph_ Var18 Var19 Precip_
___________ __________ ____ ____ _____________ ____ ____ ____________ ____ _____ ___________________ _____ _____ _______________ _____ _____ __________ _____ _____ _______
01-Jan-2011 45 37 29 26 15 9 61 43 24 30.35 30.22 29.98 10 10 10 21 10 25 0
02-Jan-2011 49 37 25 20 16 11 74 49 24 30.43 30.33 30.25 10 10 10 10 4 14 0
03-Jan-2011 60 45 30 33 26 19 69 50 30 30.23 30.13 30.01 10 10 10 22 10 26 0
04-Jan-2011 57 49 40 45 40 33 83 71 59 30.14 30.06 29.98 10 10 10 13 5 15 0
Nate Mays
2021 年 3 月 10 日
My WData table looks the same as yours, so you also got a plot as well from the code.
Nate Mays
2021 年 3 月 10 日
I figured out the issue, My WData had quotations around my number data and after I removed that, I recieved my grpahs and it was plotted correctly
Walter Roberson
2021 年 3 月 10 日
The file you posted did not have quotes around the numeric data though ??
Nate Mays
2021 年 3 月 10 日
It didnt. It wasnt until it was read in that my number databhad quotations.
Walter Roberson
2021 年 3 月 10 日
You would get that if you tried to read a header. You might need to use detectImportOptions first which was not yet automatic in your release.
採用された回答
ANKUR KUMAR
2021 年 3 月 10 日
You can generate dates as per the values in the excel sheet. This won't throw an error for dimension mismatch.
[~, ~, weather_data] = xlsread('WeatherData1.xlsx','Sheet1','A1:B367');
weather_data(cellfun(@(x) ~isempty(x) && isnumeric(x) && isnan(x),weather_data)) = {''};
weather_data=weather_data(3:end,:);
time=cellfun(@(x) datetime(datestr(datenum(x,'dd-mmm-yy'))) ,weather_data(:,1),'uni',0);
temp=weather_data(:,2);
plot(cat(1,time{:}),cell2mat(weather_data(:,2)))
Hope this helps.
1 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!エラーが発生しました
ページに変更が加えられたため、アクションを完了できません。ページを再度読み込み、更新された状態を確認してください。
Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
アジア太平洋地域
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)