Skip to content

Commit

Permalink
Turn dashes into underscores (#152)
Browse files Browse the repository at this point in the history
* Turn dashes into underscores

* Revert "Update notebook (#148)"

This reverts commit 468feca.
  • Loading branch information
Fokko committed Apr 30, 2024
1 parent d58fd85 commit 8d3a94a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@
"metadata": {},
"outputs": [],
"source": [
"expected_boroughs = {\"Queens\", \"Brooklyn\", \"Bronx\"}"
"expected_boroughs = {\"Queens\", \"Brooklyn\", \"Bronx\", \"Staten Island\"}"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions spark/notebooks/PyIceberg - Getting Started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
"metadata": {},
"outputs": [],
"source": [
"%%sql --save tip-amount --no-execute\n",
"%%sql --save tip_amount --no-execute\n",
"\n",
"SELECT tip_amount\n",
"FROM df"
Expand All @@ -306,7 +306,7 @@
"metadata": {},
"outputs": [],
"source": [
"%sqlplot histogram --table df --column tip_amount --bins 22 --with tip-amount\n"
"%sqlplot histogram --table df --column tip_amount --bins 22 --with tip_amount\n"
]
},
{
Expand All @@ -316,7 +316,7 @@
"metadata": {},
"outputs": [],
"source": [
"%%sql --save tip-amount-filtered --no-execute\n",
"%%sql --save tip_amount_filtered --no-execute\n",
"\n",
"WITH tip_amount_stddev AS (\n",
" SELECT STDDEV_POP(tip_amount) AS tip_amount_stddev\n",
Expand All @@ -336,7 +336,7 @@
"metadata": {},
"outputs": [],
"source": [
"%sqlplot histogram --table tip-amount-filtered --column tip_amount --bins 50 --with tip-amount-filtered\n"
"%sqlplot histogram --table tip_amount_filtered --column tip_amount --bins 50 --with tip_amount_filtered\n"
]
},
{
Expand Down

0 comments on commit 8d3a94a

Please sign in to comment.