Skip to content

Commit

Permalink
string
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwin3210 committed Oct 3, 2024
1 parent 94a3a89 commit 33d37ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For Fall 2024, students will receive an abbreviated reference sheet for exams.
---

## Table Functions and Methods
In the examples in the left column, `np` refers to the NumPy module, as usual. Everything else is a function, a method, an example of an argument to a function or method, or an example of an object we might call the method on. For example, `tbl` refers to a table, `array` refers to an array, and `num` refers to a number. `array.item(0)` is an example call for the method item, and in that example, `array` is the name previously given to some array.
In the examples in the left column, `np` refers to the NumPy module, as usual. Everything else is a function, a method, an example of an argument to a function or method, or an example of an object we might call the method on. For example, `tbl` refers to a table, `array` refers to an array, `str` refers to a string, and `num` refers to a number. `array.item(0)` is an example call for the method item, and in that example, `array` is the name previously given to some array.

| **Name** | **Description** | **Input** | **Output** |
| `Table()` | Create an empty table, usually to extend with data ([Ch 6](https://inferentialthinking.com/chapters/06/Tables.html)) | None | An empty **Table** |
Expand Down

0 comments on commit 33d37ed

Please sign in to comment.