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
Creates a normalized EntitySet from dataframe based on the dependencies given. Keys are chosen in the same fashion as for `normalize_dataframe`and a new index will be created if any key has more than a single attribute.
79
80
80
81
**Returns:**
82
+
81
83
*`entityset` (ft.EntitySet) : created EntitySet
82
84
83
85
<br />
84
86
87
+
#### `normalize_entity`
88
+
89
+
```shell
90
+
normalize_entity(es, accuracy=0.98)
91
+
```
92
+
Returns a new normalized `EntitySet` from an `EntitySet` with a single entity.
93
+
94
+
**Arguments:**
95
+
96
+
*`es` (ft.EntitySet) : EntitySet with a single entity to normalize
97
+
98
+
**Returns:**
99
+
100
+
*`new_es` (ft.EntitySet) : new normalized EntitySet
0 commit comments