From 60baa567d67477e318de189e5be35eee946b2c5a Mon Sep 17 00:00:00 2001 From: Mithun Date: Mon, 29 Jan 2018 04:22:47 +0530 Subject: [PATCH] set spark to false --- docs/ModelingAndEvaluation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ModelingAndEvaluation.md b/docs/ModelingAndEvaluation.md index 1d5bfb5..09cf454 100644 --- a/docs/ModelingAndEvaluation.md +++ b/docs/ModelingAndEvaluation.md @@ -12,7 +12,7 @@ The aim of this lab is to use the .dprep file created from the previous lab to d 2.2. A new python file is created with the "drep" snippet. This snippet (shown below) can be seen in lines 22 and 23 of CATelcoCustomerChurnModeling.py ``` with Package.open_package('CATelcoCustomerChurnTrainingSample.dprep') as pkg: - df = pkg.dataflows[0].get_dataframe() + df = pkg.dataflows[0].get_dataframe(spark=False) ``` The dataframe df can then be used in the code for advanced analytics.