You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
How can I make the DF display use a text representation of objects?
The text was updated successfully, but these errors were encountered:
all values in my pandas dataframe are objects, i made this because i need save some information for each cell
for cell i use
when i use in debug 'View Value in Data Viewer' i see
How can I make the DF display use a text representation of objects?
The text was updated successfully, but these errors were encountered: