Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2015 09:28 AM
The
display() function requires a collection as opposed to single item, so any of the following examples will give you a means to displaying the results:
- `display([df.first()])` # just make it an array
# take w/ 1 is functionally equivalent to first(), but returns a DataFramedisplay(df.take(1))
# I'm not 100% sure this is guaranteed to be ordered, but it's another option to try that returns a DataFramedisplay(df.limit(1))