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

Method sql2ddf

python/ddf/ddf_manager.py:33–38  ·  view source on GitHub ↗

Create a DistributedDataFrame from an sql command. :param command: the sql command to run

(self, command)

Source from the content-addressed store, hash-verified

31 return self._jdm.sql(command)
32
33 def sql2ddf(self, command):
34 """
35 Create a DistributedDataFrame from an sql command.
36 :param command: the sql command to run
37 """
38 return DistributedDataFrame(self._jdm.sql2ddf(command))
39
40 def shutdown(self):
41 """

Callers 2

testConfusionMatrixMethod · 0.95
mainMethod · 0.95

Calls 2

sql2ddfMethod · 0.65

Tested by 1

testConfusionMatrixMethod · 0.76