Skip to content

dashboard.py with error #4

Open
@rlacjfjin

Description

Hi,
When I run dashboard.py, there has following error:

pyarrow.lib.ArrowInvalid: ("Could not convert 'Total' with type str: tried to convert to int64", 'Conversion failed for column layer with type object')

I think it may be caused by layer column value in bin.layer_pool.describe() is mixed which are int and string.
I transfer the layer value type:

 df = bin.layer_pool.describe()
 df["layer"] = df["layer"] .apply(str)

It's ok.

I'm not sure if it's a version problem that's causing these problems.
Anyway, this is the problem I encountered and the solution. I hope other people with the same problem can refer to it.

Thanks

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions