Skip to content

Commit

Permalink
Update h2o-py/h2o/frame.py
Browse files Browse the repository at this point in the history
Co-authored-by: Marek Novotný <[email protected]>
  • Loading branch information
wendycwong and mn-mikke authored Oct 24, 2023
1 parent f8d5918 commit 78c604b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h2o-py/h2o/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1981,7 +1981,7 @@ def as_data_frame(self, use_pandas=True, header=True, multi_thread=False):
os.rmdir(tmpdir)
elif not(can_use_datatable()):
warnings.warn("multi_thread mode can only be used when you have datatable "
"installed. Default to single-thread operation.")
"installed. Defaults to single-thread operation.")
return pandas.read_csv(StringIO(self.get_frame_data()), low_memory=False, skip_blank_lines=False)
from h2o.utils.csv.readers import reader
frame = [row for row in reader(StringIO(self.get_frame_data()))]
Expand Down

0 comments on commit 78c604b

Please sign in to comment.