https://github.com/CodedByArizola/weekly-temperature-chart
This is a program that will record temperatures of each day of the week as well as display the coldest and warmest day. It will also summon a bar chart with the temperature values.
https://github.com/CodedByArizola/weekly-temperature-chart
Last synced: 8 months ago
JSON representation
This is a program that will record temperatures of each day of the week as well as display the coldest and warmest day. It will also summon a bar chart with the temperature values.
- Host: GitHub
- URL: https://github.com/CodedByArizola/weekly-temperature-chart
- Owner: GhostDaGhost
- Created: 2023-08-19T05:27:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-19T05:32:24.000Z (almost 3 years ago)
- Last Synced: 2024-12-29T04:57:59.439Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Weekly Temperature Chart
A program that will display a chart of temperatures of a week. It will ask the user for the temperature for each day and then generate a bar chart.
### How to run:
1. Ensure that you have **pip** installed. You can check the documentation here.
2. When you are ready to install **pip**, run whichever command matches your OS within the documentation.
3. Once **pip** is installed, go to your terminal window and enter the following command: `pip install matplotlib`
4. Once **matplotlib** is installed, you can now import the library into a Python script.
Import Example:
```python
import matplotlib.pyplot as plt
```
Chart Example: