MCPcopy Create free account
hub / github.com/ddf-project/DDF / project

Method project

python/ddf/dataframe.py:56–60  ·  view source on GitHub ↗

Project on some columns and return a new DistributedDataFrame

(self, column_names)

Source from the content-addressed store, hash-verified

54 return self._jddf.getViewHandler().head(n)
55
56 def project(self, column_names):
57 """
58 Project on some columns and return a new DistributedDataFrame
59 """
60 return DistributedDataFrame(self._jddf.getViewHandler().project(column_names))
61
62 def sample(self, size, replacement=False, seed=123):
63 """

Callers

nothing calls this directly

Calls 3

projectMethod · 0.65
getViewHandlerMethod · 0.45

Tested by

no test coverage detected