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
In DataFrame A, we have correlated observations. We want to keep these rows linked throughout the calculation. However, due to the differing shapes, we can't just stack the two DataFrames on top of each other (the shapes don't match).
We can add NaN or other dummy values to get the shapes to match, or assume that we have gap-filling models (though this isn't always desirable - sometimes we would like to know when we do and do not have real data).
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Imagine we have two dataframes in our data warehouse, and these dataframes have different shapes:
DataFrame A:
DataFrame B:
In DataFrame A, we have correlated observations. We want to keep these rows linked throughout the calculation. However, due to the differing shapes, we can't just stack the two DataFrames on top of each other (the shapes don't match).
We can add
NaNor other dummy values to get the shapes to match, or assume that we have gap-filling models (though this isn't always desirable - sometimes we would like to know when we do and do not have real data).Beta Was this translation helpful? Give feedback.
All reactions