@@ -51,15 +51,23 @@ Import snippets start with `i` followed by the package's import alias.
51
51
52
52
### Pandas
53
53
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 ` |
63
71
64
72
### Matplotlib
65
73
@@ -91,9 +99,11 @@ Import snippets start with `i` followed by the package's import alias.
91
99
| Trigger | Description |
92
100
| --------------| ---------------------------|
93
101
| ` compile ` | ` model.compile ` |
102
+ | ` evaluate ` | ` model.evaluate ` |
94
103
| ` fit ` | ` model.fit ` |
95
104
| ` layer ` | ` keras.layers.layer ` |
96
105
| ` load_model ` | ` keras.models.load_model ` |
106
+ | ` predict ` | ` model.predict ` |
97
107
| ` save ` | ` model.save ` |
98
108
| ` sequential ` | ` keras.Sequential ` |
99
109
0 commit comments