@@ -51,15 +51,23 @@ Import snippets start with `i` followed by the package's import alias.
5151
5252### Pandas
5353
54- | Trigger | Description |
55- | ------------| ----------------|
56- | ` columns ` | ` df.columns ` |
57- | ` describe ` | ` df.describe ` |
58- | ` df ` | ` pd.DataFrame ` |
59- | ` head ` | ` df.head ` |
60- | ` read_csv ` | ` pd.read_csv ` |
61- | ` ser ` | ` pd.Series ` |
62- | ` tail ` | ` df.tail ` |
54+ | Trigger | Description |
55+ | ---------------| ---------------- |
56+ | ` apply ` | ` df.apply ` |
57+ | ` columns ` | ` df.columns ` |
58+ | ` describe ` | ` df.describe ` |
59+ | ` df ` | ` pd.DataFrame ` |
60+ | ` dropna ` | ` df.dropna ` |
61+ | ` fillna ` | ` df.fillna ` |
62+ | ` groupby ` | ` df.groupby ` |
63+ | ` head ` | ` df.head ` |
64+ | ` read_csv ` | ` pd.read_csv ` |
65+ | ` rename ` | ` df.rename ` |
66+ | ` sample ` | ` df.sample ` |
67+ | ` ser ` | ` pd.Series ` |
68+ | ` tail ` | ` df.tail ` |
69+ | ` to_csv ` | ` df.to_csv ` |
70+ | ` to_datetime ` | ` pd.to_datetime ` |
6371
6472### Matplotlib
6573
@@ -91,9 +99,11 @@ Import snippets start with `i` followed by the package's import alias.
9199| Trigger | Description |
92100| --------------| ---------------------------|
93101| ` compile ` | ` model.compile ` |
102+ | ` evaluate ` | ` model.evaluate ` |
94103| ` fit ` | ` model.fit ` |
95104| ` layer ` | ` keras.layers.layer ` |
96105| ` load_model ` | ` keras.models.load_model ` |
106+ | ` predict ` | ` model.predict ` |
97107| ` save ` | ` model.save ` |
98108| ` sequential ` | ` keras.Sequential ` |
99109
0 commit comments