Return this DistributedDataFrame's some first rows
(self, n=10)
| 48 | ########################################################################### |
| 49 | |
| 50 | def head(self, n=10): |
| 51 | """ |
| 52 | Return this DistributedDataFrame's some first rows |
| 53 | """ |
| 54 | return self._jddf.getViewHandler().head(n) |
| 55 | |
| 56 | def project(self, column_names): |
| 57 | """ |
nothing calls this directly
no test coverage detected