Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. In [43]: yelp_df.printSchema()
  2. root
  3. |-- business_id: string (nullable = true)
  4. |-- cool: integer (nullable = true)
  5. |-- date: string (nullable = true)
  6. |-- funny: integer (nullable = true)
  7. |-- id: string (nullable = true)
  8. |-- stars: integer (nullable = true)
  9. |-- text: string (nullable = true)
  10. |-- type: string (nullable = true)
  11. |-- useful: integer (nullable = true)
  12. |-- user_id: string (nullable = true)
  13. |-- name: string (nullable = true)
  14. |-- full_address: string (nullable = true)
  15. |-- latitude: double (nullable = true)
  16. |-- longitude: double (nullable = true)
  17. |-- neighborhoods: string (nullable = true)
  18. |-- open: boolean (nullable = true)
  19. |-- review_count: integer (nullable = true)
  20. |-- state: string (nullable = true)
  21.  
  22. business_id cool date funny id stars text type useful user_id name full_address latitude longitude neighborhoods open review_count state
  23. 9yKzy9PApeiPPOUJE... 2 2011-01-26 0 fWKvX83p0-ka4JS3d... 4 My wife took me h... business 5 rLtl8ZkDX5vH5nAx9... Morning Glory Cafe 6106 S 32nd St Ph... 33.3907928467 -112.012504578 [] true 116 AZ
  24. ZRJwVLyzEJq1VAihD... 0 2011-07-27 0 IjZ33sJrzXqU-0X6U... 4 I have no idea wh... business 0 0a2KyEL0d3Yb1V6ai... Spinato's Pizzeria 4848 E Chandler B... 33.305606842 -111.978759766 [] true 102 AZ
  25. 6oRAC4uyJCsJl1X0W... 0 2012-06-14 0 IESLBzqUCLdSzSqm0... 4 love the gyro pla... business 1 0hT2KtfLiobPvh6cD... Haji-Baba 1513 E Apache Bl... 33.4143447876 -111.913032532 [] true 265 AZ
  26. _1QQZuf4zZOyFCvXc... 1 2010-05-27 0 G-WvGaISbqqaMHlNn... 4 Rosie, Dakota, an... business 2 uZetl9T0NcROGOyFf... Chaparral Dog Park 5401 N Hayden Rd ... 33.5229454041 -111.90788269 [] true 88 AZ
  27. 6ozycU1RpktNG2-1B... 0 2012-01-05 0 1uJFq2r5QfJG_6ExM... 4 General Manager S... business 0 vYmM4KTsC8ZfQBg-j... Discount Tire 1357 S Power Road... 33.3910255432 -111.68447876 [] true 5 AZ
  28.  
  29. yelp_df.filter(yelp_df["open"] == "true").collect()
  30.  
  31. yelp_df.filter(yelp_df["open"] == True).collect()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement