0

Basically the title. Using PyCharm 2023.3.3 I'm not able to see the data of polars DataFrames.

As an example, I've a simple DataFrame like this:

print(ids_df)
shape: (1, 4)
┌─────────────────────────────────┬────────────────────┬────────────────────────────┬───────┐
│ uuid                            ┆ cod                ┆ tms_created                ┆ valid │
│ ---                             ┆ ---                ┆ ---                        ┆ ---   │
│ str                             ┆ str                ┆ datetime[ns]               ┆ bool  │
╞═════════════════════════════════╪════════════════════╪════════════════════════════╪═══════╡
│ UUID4                           ┆ CODE_1             ┆ 2025-09-29 09:10:16.219874 ┆ true  │
└─────────────────────────────────┴────────────────────┴────────────────────────────┴───────┘

But while debugging the function "view as DataFrame" shows nothing: enter image description here

Is there something that can be set on Format to see it?

1 Answer 1

0

This works fine for me on PyCharm 2025.2.3.

Given that you run a two year old version - from around the time when JetBrains was in the process of adding Polars support - updating to a newer version should be your best bet.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.