Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debug dataframe Data Viewer #15705

Open
PavukEdya opened this issue May 23, 2024 · 0 comments
Open

debug dataframe Data Viewer #15705

PavukEdya opened this issue May 23, 2024 · 0 comments
Assignees
Labels
feature-request Request for new features or functionality

Comments

@PavukEdya
Copy link

all values in my pandas dataframe are objects, i made this because i need save some information for each cell
for cell i use

@dataclasses.dataclass
class DataFrameCellWithCoord:
    value: Any
    row: int
    column: int
    column_letter: str

    def __str__(self):
        return str(self.value)

    def __repr__(self):
        return self.__str__()

when i use in debug 'View Value in Data Viewer' i see
изображение_2024-05-23_112731459
How can I make the DF display use a text representation of objects?

@PavukEdya PavukEdya added the feature-request Request for new features or functionality label May 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request Request for new features or functionality
Projects
None yet
Development

No branches or pull requests

2 participants