Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

preprocess_data.py 262 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
  1. import packages.data_management as dm
  2. path_to_data = "./git_actions_data/raw/spam.csv"
  3. saving_folder = "./git_actions_data/preprocessed"
  4. final_file_name = "spam_preprocessed.csv"
  5. dm.prepare_data(path_to_data, saving_folder, final_file_name, encoding="latin-1")
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...