Describe the bug, including details regarding any error messages, version, and platform.
i created a parquet file in polars where one of the columns has a Float16 type:
import polars as pl
df = pl.DataFrame(
{"name": "john", "height": 1.78},
schema={"name": pl.String, "height": pl.Float64},
).write_parquet("./data.parquet")
but reading it with arrow yields a different value:
library(arrow)
df <- read_parquet("./data.parquet")
print(df)
# name height
# 1 john 16159
Component(s)
R
Describe the bug, including details regarding any error messages, version, and platform.
i created a parquet file in polars where one of the columns has a Float16 type:
but reading it with arrow yields a different value:
Component(s)
R