parquetwrite: 'VariableNames' is not a recognized parameter

조회 수: 11 (최근 30일)
David
David 2025년 10월 17일
답변: Harald 2025년 10월 21일
I'm using parquetwrite and Matlab 2024a. I'm trying to use the VariableNames optional input but I'm getting an error message saying: 'VariableNames' is not a recognized parameter.
Why am I getting this error? In the help documentation it says VariableNames was added to parquetwrite starting in R2024a. I'm running version 24.1.0.2578822 (R2024a) Update 2.
  댓글 수: 6
Stephen23
Stephen23 2025년 10월 17일
How are you calling parquetwrite: from a script or from the command-line ?
David
David 2025년 10월 17일
I'm running from the command line.
For example, here's the output if I take the parquetwrite documentation example and add a VariableNames input:
>> T = readtable('outages.csv');
>> parquetwrite('outagesDefault.parquet',T,'VariableNames',T.Properties.VariableNames)
Error using parquetwrite (line 188)
'VariableNames' is not a recognized parameter. For a list of valid name-value pair arguments, see the
documentation for this function.

댓글을 달려면 로그인하십시오.

답변 (1개)

Harald
Harald 2025년 10월 21일
Hi,
I can reproduce the problem in R2024a. The code works fine in R2024b.
Workaround for R2024a: In your example, there should not be a need to specify VariableNames since according to the documentation, they will be derived from the input table anyway. If in other settings you need different variable names, I'd suggest to change the VariableNames of the input table (or a copy of it):
T = readtable('outages.csv');
T2 = T;
T2.Properties.VariableNames = newNames;
parquetwrite('outagesDefault.parquet',T2)
Best wishes,
Harald

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by