assignUser commented on issue #39790:
URL: https://github.com/apache/arrow/issues/39790#issuecomment-1909277515
The issue was closed because at the time we were using jira to track issues,
which is pretty clear when you look at the issue. Please try to be respectful
when asking for help.
The just released pyarrow 15.0.0 supports float16 thanks to year long work
from multiple contributors, thanks for appreciating it.
```
import pyarrow as pa
import pyarrow.parquet as pq
import numpy as np
arr = pa.array(np.float16([0.1, 2.2, 3]))
table = pa.table({'a': arr})
pq.write_table(table, "test_halffloat.parquet")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]