Computer Science, asked by abhisheksaroj0123, 9 months ago

H​ow many rows are in the SFrame? (Do NOT use commas or periods.)

Answers

Answered by Anonymous
9

SFrame is a python data structure for representing data sets with n number of rows and columns, with rows representing the record and column the variable.

  • It ensures you can practically store data frames of any size as long as you don't run out of disk space and memory.
  • Sframe is also column mutable which means it can add or delete number of columns.
  • SFrame is provided by graphlab library and uses the SArray for linear data storage.

Answered by sushilyashk
28

Answer:

2000000 rows x 3 columns] Note: Only the head of the SFrame is printed. You can use print_rows(num_rows=m, num_columns=n) to print more rows and columns.

Similar questions