ValueError: Unable to convert array of bytes/strings into decimal numbers with dtype=’numeric’
I have this pipeline: diamonds = sns.load_dataset("diamonds") # Build feature/target arrays X, y = diamonds.drop("cut", axis=1), diamonds["cut"] # Set up the colnames to_scale = ["depth", "table", "x", "y", "z"] to_log…