Код: Выделить всё
"hello", "2024 JAN", "2024 FEB"
"a", 0, 1
Код: Выделить всё
"hello", "year", "month", "value"
"a", 2024, "JAN", 0
"a", 2024, "FEB", 1
Код: Выделить всё
import numpy as np
data = np.array([["hello", "2024 JAN", "2024 FEB"], ["a", "0", "1"]], dtype="
Подробнее здесь: [url]https://stackoverflow.com/questions/78684997/efficiently-storing-data-that-is-partially-columnar-into-a-duckdb-database-in-a[/url]