Files
training.python.beginner/training/demos/08-text-files/pandas-demo/source/csv_read_demo.py
2025-07-04 19:26:39 +02:00

27 lines
723 B
Python

"""
Pandas getting started script.
Pandas introduction demo script for Python beginners.
Makes a few calls taken from the official docs to see what can be done
with Pandas.
See Also:
https://pandas.pydata.org/docs/getting_started/comparison/comparison_with_sql.html
"""
import pandas as pd
if __name__ == "__main__":
# Read dataframe from CSV file
frame: pd.DataFrame = pd.read_csv("files/demo-file-985.csv")
# Get basic information on data
print(frame.dtypes)
# Access, within column zero, to all rows
for row in frame.street:
print(row)
# Make the equivalent to a SELECT WHERE query
# Get a frame where the price column is > 100,000
print(frame[frame["price"] > 100000])