11 references to
Microsoft.Data.Analysis (11)
DataFrameColumns\ArrowStringDataFrameColumn.cs (2)
31public ArrowStringDataFrameColumn(string name) : base(name, 0, typeof(string)) 47public ArrowStringDataFrameColumn(string name, ReadOnlyMemory<byte> values, ReadOnlyMemory<byte> offsets, ReadOnlyMemory<byte> nullBits, int length, int nullCount) : base(name, length, typeof(string))
DataFrameColumns\StringDataFrameColumn.cs (2)
25public StringDataFrameColumn(string name, long length = 0) : base(name, length, typeof(string)) 41public StringDataFrameColumn(string name, IEnumerable<string> values) : base(name, 0, typeof(string))
DataFrameColumns\VBufferDataFrameColumn.cs (2)
29public VBufferDataFrameColumn(string name, long length = 0) : base(name, length, typeof(VBuffer<T>)) 44public VBufferDataFrameColumn(string name, IEnumerable<VBuffer<T>> values) : base(name, 0, typeof(VBuffer<T>))
PrimitiveDataFrameColumn.cs (5)
30internal PrimitiveDataFrameColumn(string name, PrimitiveColumnContainer<T> columnContainer) : base(name, columnContainer.Length, typeof(T)) 35public PrimitiveDataFrameColumn(string name, IEnumerable<T?> values) : base(name, 0, typeof(T)) 41public PrimitiveDataFrameColumn(string name, IEnumerable<T> values) : base(name, 0, typeof(T)) 47public PrimitiveDataFrameColumn(string name, long length = 0) : base(name, length, typeof(T)) 52public PrimitiveDataFrameColumn(string name, ReadOnlyMemory<byte> buffer, ReadOnlyMemory<byte> nullBitMap, int length = 0, int nullCount = 0) : base(name, length, typeof(T))