MCPcopy
hub / github.com/AutoViML/AutoViz / left_subtract

Function left_subtract

autoviz/AutoViz_Utils.py:1970–1975  ·  view source on GitHub ↗
(l1, l2)

Source from the content-addressed store, hash-verified

1968
1969#################################################################################
1970def left_subtract(l1, l2):
1971 lst = []
1972 for i in l1:
1973 if i not in l2:
1974 lst.append(i)
1975 return lst
1976
1977
1978#######

Callers 5

AutoViz_MainMethod · 0.90
find_corr_varsFunction · 0.70
find_top_features_xgbFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected