TechInPlanet
TechInPlanet

Tech that matters in planet

Browsing Tag

pipeline

1 post

ValueError: Unable to convert array of bytes/strings into decimal numbers with dtype=’numeric’

  • techinplanet staff
  • October 13, 2022
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…
View Post
TechInPlanet