Need to know how to readtable() when file has row 1 variable names and row 2 units and the other rows data
29 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Given this file format:
Time MotorCurrent Time1 Pressure1 Time2 Pressure2 Time3 Pressure3
sec A sec mmHg sec mmHg sec mmHg
0 0.508069 0 21.6337 0 -0.417497 0 -0.530318
0.0002 0.513559 0.0002 21.61 0.0002 -0.399605 0.0002 -0.531096
0.0004 0.517756 0.0004 21.4696 0.0004 -0.410236 0.0004 -0.509577
...
And these settings: DelimitedTextImportOptions with properties:
Format Properties:
Delimiter: {'\t'}
Whitespace: '\b '
LineEnding: {'\n' '\r' '\r\n'}
CommentStyle: {}
ConsecutiveDelimitersRule: 'split'
LeadingDelimitersRule: 'keep'
EmptyLineRule: 'skip'
Encoding: 'ISO-8859-1'
Replacement Properties:
MissingRule: 'fill'
ImportErrorRule: 'fill'
ExtraColumnsRule: 'addvars'
Variable Import Properties: Set types by name using setvartype
VariableNames: {}
VariableTypes: {}
SelectedVariableNames: {}
VariableOptions: Show all 0 VariableOptions
Access VariableOptions sub-properties using setvaropts/getvaropts
Location Properties:
DataLine: 3
VariableNamesLine: 1
RowNamesColumn: 0
VariableUnitsLine: 2
VariableDescriptionsLine: 0
Why do I still get .Var1, .Var2, etc.?
0 Commenti
Risposte (3)
Jeremy Hughes
il 24 Mag 2017
Modificato: Jeremy Hughes
il 24 Mag 2017
Hi Doug,
The good news is that readtable using import options was built for this.
I think there might be some confusion on how the import options is used. I noticed something odd about your import options; there are no variable names. Are you creating this by hand? If so, are you passing the import options as an argument to readtable? If so, then I would expect you to get 'ExtraVar1','ExtraVar2',... because of ExtraColumnsRule: 'addvars'. Let me talk through the recommended workflow and see if we can't get this to import.
Try the following:
opts = detectImportOptions(filename)
This should be pretty close, but it doesn't have the capability of detecting if line two should be VariableUnits, VariableDescriptions, or something else. You will need to set this manually.
opts.VariableUnitsLine = 2
Everything else should be good because this format looks straightforward. From here, you can then inspect the variable names to see if they are the ones you want and modify them accordingly. If you see Var1, Var2, ... then the variable names were not detected correctly. If that's the case, you can pass 'NumHeaderLines',0 to detectImportOptions, and that should help, but I don't think you'll need that.
From the import options you can then modify the DataLine, VariableNamesLine, etc. to be what you want, if they aren't already. Now you should be able to read your file without any issue.
T = readtable(filename,opts);
I also cannot be sure if your choice of '\t' is wholly correct for delimiter. Some of the units look like they might be separated by space characters (but likely it's just the tab stops are shor). If you have problems reading the units line try:
opts.Delimiter = {'\t',' '}
You can specify as many delimiters as you need, but they are applied to every line/field in the data.
I hope this helps, Jeremy
(Edited for typo)
2 Commenti
dpb
il 24 Mag 2017
Huh. Hadn't read the doc on this before; is pretty slick way to do it.
Looks like should handle OPs problem so I deleted the Answer I gave based on release prior R2016b.
I notice in the 'Delimited Text Properites' section they've still not solved the fixed-width field, however (altho it has no bearing here, just a comment).
dpb
il 24 Mag 2017
I'd suggest attach a short section of the file so others with recent-enough release can play with your exact case to see if reproduce problem you're having or can more easily find a syntax/input problem or an issue in the file itself.
Doug Ivers
il 24 Mag 2017
1 Commento
dpb
il 24 Mag 2017
Be better to make follow-up discussion as Comment rather than Answer...
Need to know what the error is...attach in context
I note the example outputs from the detectimportoptions function returns the variable names in a list in the 'VariableNames' property as well as a line number.
It may be in early incarnation that is needed to make it function correctly; I'd consider it a bug.
It looks to me like this is worthy a bug report submitted at www.mathworks.com as the documentation surely implies to me that your initial options file should work--or at least the doc should say that the names fields must be populated first which surely seems to defeat the purpose of the table to reduce labor.
GUNHEE MOON
il 15 Apr 2021
opt = detectImportOptions( 'inputfile.xlsx' )
opt.VariableUnitRanges = 'A2'
data = readtable( 'inputfile.xlsx' , opt);
0 Commenti
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!