Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer committed Jan 11, 2023
1 parent 179d511 commit fd3bfa0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ opteryx.register_df("exoplanets", pandas_df)
curr = opteryx.Connection().cursor()
curr.execute("SELECT koi_disposition, COUNT(*) FROM exoplanets GROUP BY koi_disposition;")
aggregrated_df = curr.to_df()
print(aggregated_df.head())

aggregated_df.head()
~~~
~~~
koi_disposition COUNT(*)
Expand All @@ -163,7 +164,7 @@ import opteryx

conn = opteryx.connect()
cur = conn.cursor()
cur.execute("SELECT * FROM space_missions.parquet LIMIT 5;")
cur.execute("SELECT * FROM 'space_missions.parquet' LIMIT 5;")

cur.head()
~~~
Expand Down

0 comments on commit fd3bfa0

Please sign in to comment.