Last active
January 9, 2025 12:44
-
-
Save nikk-ca/ebbf00c2699e7000bc8cb5c12523a8ea to your computer and use it in GitHub Desktop.
getting a data set with wolfram cloud
This file contains 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
EntityClass["Movie",{"DomesticBoxOfficeGross"->TakeLargest[5000]}] // EntityValue[#, "Name"]& // StringRiffle[#, "\n"]& | |
EntityClass["Company",{"TotalAssets"->TakeLargest[5000]}] // EntityValue[#, "Name"]& // StringRiffle[#, "\n"]& | |
EntityList["Pokemon"] // EntityValue[#, "Name"]& // StringRiffle[#, "\n"]& | |
EntityList["Mythology"] // EntityValue[#, "Name"]& // StringRiffle[#, "\n"]& |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment