collection.preview()
Parameters
Return Object
Sample Usage
# Preview your collection in a pandas DataFrame
collection_id = 101
my_collection = get.collection(collection_id)
my_collection.preview()Last updated
id:int:ID of Rasgo Collection to return
pandas DataFrame
View the first 10 rows of your collection in a pandas dataframe
# Preview your collection in a pandas DataFrame
collection_id = 101
my_collection = get.collection(collection_id)
my_collection.preview()Last updated