(x)
| 35 | return content |
| 36 | |
| 37 | def my_rank(x): |
| 38 | return pd.Series(x).rank(pct=True).iloc[-1] |
| 39 | |
| 40 | def cal_news(df): |
| 41 | df["title"] = df["title"].fillna("").str.replace("\n", " ").replace("\r", " ").replace("\t", " ") |
nothing calls this directly
no outgoing calls
no test coverage detected