generated from jhudsl/OTTR_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
78 changed files
with
6,316 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: "Python Community Session 1" | ||
format: | ||
revealjs: | ||
smaller: true | ||
scrollable: true | ||
echo: true | ||
output-location: fragment | ||
--- | ||
|
||
## How to find new functions and methods | ||
|
||
Suppose you want to learn more about Pandas Dataframes: | ||
|
||
[Newcomer tutorials](https://pandas.pydata.org/docs/user_guide/10min.html) | ||
|
||
[User guides](https://pandas.pydata.org/docs/user_guide/index.html) | ||
|
||
[Package documentation page](https://pandas.pydata.org/docs/index.html) | ||
|
||
- How to install the module? | ||
|
||
- How to load in the module? What are some module functions? | ||
|
||
- What kind of Objects are available for use? | ||
|
||
## What kind of Objects are available for use? | ||
|
||
- How to construct or load an Object? | ||
|
||
- *What does it contain?* | ||
|
||
- **Value** that holds the essential data for the object. | ||
|
||
- **Attributes** that hold subset of the data or additional data for the object. | ||
|
||
- *What can it do?* | ||
|
||
- Functions called **Methods** specific to the data type and automatically takes the object as input. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.