News

From a python script, running in the reticulate REPL: import pandas as pd import matplotlib.pyplot as plt df = pd.DataFrame ( [1.0,2.0,3.0,4.0,5.0], [1.0,2.0,3.0,4.0,5.0]) # fails if I call the plot ...
Hello, I would like to use a LookupTransformer within a ColumnTransformer: from sklearn.compose import ColumnTransformer from sklearn2pmml.preprocessing import LookupTransformer import pandas as pd ...