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
is a blank obs_seq instance necessary to fill up with obs sequence, or just join existing obs sequence instances?
just dataframes:
class obs_sequence:
...
def join_obs_sequences(self, obs_sequences):
"""Join multiple obs_sequence instances.
Args:
obs_sequences (list): List of obs_sequence instances.
Returns:
pandas.DataFrame: Joined DataFrame of all obs_sequences.
"""
return pd.concat([obs.df for obs in obs_sequences])
Question:
just dataframes:
The text was updated successfully, but these errors were encountered: