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

experiment.py 128 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
  1. import os
  2. import pandas as pd
  3. DATA_DIR = 'data'
  4. df = pd.read_csv(os.path.join(DATA_DIR, 'file.csv'))
  5. print('shape:', df.shape)
Tip!

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

Comments

Loading...