rmprop
Remove custom properties from table or timetable
Description
T = rmprop(
removes properties that contain custom metadata from the table or timetable
T
,propertyNames
)T
. The input argument propertyNames
specifies the
names of the properties.
Examples
Remove Custom Properties
Add properties that contain custom metadata to a table. Then remove some of the properties.
First, read measurements of humidity and air quality into a table. Display the first three rows.
T = readtable('indoors.csv');
head(T,3)
Time Humidity AirQuality ___________________ ________ __________ 2015-11-15 00:00:24 36 80 2015-11-15 01:13:35 36 80 2015-11-15 02:26:47 37 79
Add properties for custom metadata using the addprop
function. Then assign metadata to those properties.
T = addprop(T,{'Instrument','Precision','SourceFile'},{'variable','variable','table'}); T.Properties.CustomProperties.Instrument = ["clock" "hygrometer" "air quality meter"]; T.Properties.CustomProperties.Precision = [NaN 0.5 0.1]; T.Properties
ans = TableProperties with properties: Description: '' UserData: [] DimensionNames: {'Row' 'Variables'} VariableNames: {'Time' 'Humidity' 'AirQuality'} VariableTypes: ["datetime" "double" "double"] VariableDescriptions: {} VariableUnits: {} VariableContinuity: [] RowNames: {} Custom Properties (access using t.Properties.CustomProperties.<name>): SourceFile: [] Instrument: ["clock" "hygrometer" "air quality meter"] Precision: [NaN 0.5000 0.1000]
To remove properties, use the rmprop
function. The only properties that you can remove are the custom properties that you previously added using addprop
. You cannot remove the other properties in T.Properties
, although you can delete the values they contain.
Remove the Instrument
and SourceFile
properties from T.Properties.CustomProperties
.
T = rmprop(T,{'Instrument','SourceFile'}); T.Properties
ans = TableProperties with properties: Description: '' UserData: [] DimensionNames: {'Row' 'Variables'} VariableNames: {'Time' 'Humidity' 'AirQuality'} VariableTypes: ["datetime" "double" "double"] VariableDescriptions: {} VariableUnits: {} VariableContinuity: [] RowNames: {} Custom Properties (access using t.Properties.CustomProperties.<name>): Precision: [NaN 0.5000 0.1000]
Input Arguments
T
— Input table
table | timetable
Input table, specified as a table or timetable.
propertyNames
— Names of custom properties
string array | character vector | cell array of character vectors | pattern
scalar
Names of the custom properties, specified as a string array, character vector, cell
array of character vectors, or pattern
scalar.
Extended Capabilities
Tall Arrays
Calculate with arrays that have more rows than fit in memory.
The
rmprop
function fully supports tall arrays. For more information,
see Tall Arrays.
Version History
Introduced in R2018b
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- 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)