List the column names of this DDF :return: a list of strings
(self)
| 20 | |
| 21 | @property |
| 22 | def colnames(self): |
| 23 | """ |
| 24 | List the column names of this DDF |
| 25 | |
| 26 | :return: a list of strings |
| 27 | """ |
| 28 | return self._jddf.getColumnNames() |
| 29 | |
| 30 | @property |
| 31 | def rows(self): |
nothing calls this directly
no test coverage detected