mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-27 23:12:58 +00:00
We aren't yet ready to switch over the examples since almost all JS examples rely on embeddings and we haven't yet ported those over. However, this makes it possible for those that are interested to start using `@lancedb/lancedb`
1.8 KiB
1.8 KiB
@lancedb/lancedb / Exports / MakeArrowTableOptions
Class: MakeArrowTableOptions
Options to control the makeArrowTable call.
Table of contents
Constructors
Properties
Constructors
constructor
• new MakeArrowTableOptions(values?): MakeArrowTableOptions
Parameters
| Name | Type |
|---|---|
values? |
Partial<MakeArrowTableOptions> |
Returns
Defined in
Properties
dictionaryEncodeStrings
• dictionaryEncodeStrings: boolean = false
If true then string columns will be encoded with dictionary encoding
Set this to true if your string columns tend to repeat the same values
often. For more precise control use the schema property to specify the
data type for individual columns.
If schema is provided then this property is ignored.
Defined in
schema
• Optional schema: Schema<any>
Defined in
vectorColumns
• vectorColumns: Record<string, VectorColumnOptions>