このページの内容は最新ではありません。最新版の英語を参照するには、ここをクリックします。
rmprop
table または timetable からカスタム プロパティを削除
説明
T = rmprop(
は、カスタム メタデータを含むプロパティを table または timetable T
,propertyNames
)T
から削除します。入力引数 propertyNames
はプロパティの名前を指定します。
例
カスタム プロパティの削除
カスタム メタデータを含むプロパティを table に追加します。次に、一部のプロパティを削除します。
まず、湿度と大気質の測定値を table に読み取ります。最初の 3 行を表示します。
T = readtable('indoors.csv');
head(T,3)
Time Humidity AirQuality ____________________ ________ __________ 15-Nov-2015 00:00:24 36 80 15-Nov-2015 01:13:35 36 80 15-Nov-2015 02:26:47 37 79
関数 addprop
を使用して、カスタム メタデータのプロパティを追加します。次に、メタデータをそれらのプロパティに割り当てます。
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'} 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]
プロパティを削除するには、関数 rmprop
を使用します。削除できるプロパティは、以前に addprop
を使用して追加したカスタム プロパティのみです。T.Properties
内の他のプロパティは削除できません。ただし、それらに含まれる値は削除できます。
T.Properties.CustomProperties
から Instrument
プロパティと SourceFile
プロパティを削除します。
T = rmprop(T,{'Instrument','SourceFile'}); T.Properties
ans = TableProperties with properties: Description: '' UserData: [] DimensionNames: {'Row' 'Variables'} VariableNames: {'Time' 'Humidity' 'AirQuality'} VariableDescriptions: {} VariableUnits: {} VariableContinuity: [] RowNames: {} Custom Properties (access using t.Properties.CustomProperties.<name>): Precision: [NaN 0.5000 0.1000]
入力引数
拡張機能
tall 配列
メモリの許容量を超えるような多数の行を含む配列を計算します。
バージョン履歴
R2018b で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは 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)