What is the key difference between `df.fillna(method='ffill')` and `df.interpolate(method='linear')`?
-
A
ffill repeats the last value while interpolate estimates intermediate values by linear trend
-
B
interpolate always uses the column mean
-
C
ffill only works on numeric columns
-
D
Both produce identical results for numeric data