Created
June 26, 2022 20:05
-
-
Save RaMSFT/4f7ecbaf2e941b98044bfc58dcc223b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if you would like to know how tage works, un commete these | |
| # list(range(5)) #0, 1, 2, 3, 4 | |
| # list(range(2, 8)) #2, 3, 4, 5, 6, 7 | |
| # list(range(2, 8, 2)) #2, 4, 6 | |
| firstdf = spark.range(100) | |
| firstdf.count() | |
| firstdf.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment