File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 240240 " This [dotted notation](reference.html#dotted-notation) is used everywhere in Python\n " ,
241241 " to refer to the parts of things as `thing.component`.\n " ,
242242 " \n " ,
243- " `pandas.read_table` has three [parameters](reference.html#parameter):\n " ,
244- " the name of the file we want to read,\n " ,
245- " the [delimiter](reference.html#delimiter) that separates values on a line, and where our header row is.\n " ,
246- " The file name and delimiter need to be character strings (or [strings](reference.html#string) for short),\n " ,
247- " so we put them in quotes. The location of the header row would be a number, but we don't have a header row so we use the value `None`\n " ,
243+ " `pandas.read_table` has two [parameters](reference.html#parameter):\n " ,
244+ " the name of the file we want to read and where our header row is.\n " ,
245+ " The file name needs to be a character string (or [string](reference.html#string) for short),\n " ,
246+ " so we put it in quotes. The location of the header row would be a number, but we don't have a header row so we use the value `None`\n " ,
248247 " \n " ,
249248 " When we are finished typing and press Shift+Enter,\n " ,
250249 " the notebook runs our command.\n " ,
You can’t perform that action at this time.
0 commit comments