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
Not sure if in your control but I mention this anyway. to_hierarchical_dataframe() and to_denormalized_dataframe() generate very wide and long DataFrames. To save some space and facilitate visualization, the stimulus, response and electrode columns from intracellular_recordings should contain fewer details.
The text was updated successfully, but these errors were encountered:
@lvsltz that makes sense. I think the proper solution would be to wrap the stimulus and response columns in a separate class (and to give them a new neurodata_type) so that we can control the representation. That is certainly possible but requires a bit of coding and changes to schema, i.e., it may take a bit before I can get to this issue.
This allows you to control the column width in the rendering. However, it would still be nice to have nicer text representations for the stimulus and response columns.
Yes, this can work too. What I was thinking of is more to decorate python's display() or hdmf's Container when a denormalized_dataframe is shown, like below:
Not sure if in your control but I mention this anyway.
to_hierarchical_dataframe()
andto_denormalized_dataframe()
generate very wide and long DataFrames. To save some space and facilitate visualization, thestimulus
,response
andelectrode
columns fromintracellular_recordings
should contain fewer details.The text was updated successfully, but these errors were encountered: