Skip to content

Commit

Permalink
FEAT-modin-project#2447: address review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev committed Nov 20, 2020
1 parent 3fbb21c commit a85b621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/docker/census-on-omnisci/census-omnisci.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ def read():
skiprows=1,
)

df.shape
df.shape # to trigger real execution
df._query_compiler._modin_frame._partitions[0][
0
].frame_id = OmnisciServer().put_arrow_to_omnisci(
df._query_compiler._modin_frame._partitions[0][0].get()
)
) # to trigger real execution
return df


Expand All @@ -80,7 +80,7 @@ def etl(df):
y = df["EDUC"]
X = df.drop(columns=["EDUC", "CPI99"])

# trigger computation
# to trigger real execution
df.shape
y.shape
X.shape
Expand Down

0 comments on commit a85b621

Please sign in to comment.