Implemented interface member:
property
Schema
Microsoft.ML.IDataView.Schema
1 write to Schema
Microsoft.ML.Data (1)
DataView\AppendRowsDataView.cs (1)
78Schema = schema ?? _sources[0].Schema;
5 references to Schema
Microsoft.ML.Data (5)
DataView\AppendRowsDataView.cs (5)
109int startingSchemaIndex = Schema == _sources[0].Schema ? 1 : 0; 110int colCount = Schema.Count; 117string name = Schema[c].Name; 118DataViewType type = Schema[c].Type; 176Schema = parent.Schema;