Data Entry and Visualization
In entry.js
This can be formatted in a similar manner to the example. The template given to you already contains the functionality you need, and you can adapt it to type of object you're working with. Feel free to change the layout of the components if you wish.
In visualize.js
Before coding, think about the best way to present a summary of your data to the user.
- What sort of layout will you use?
- What text do you need to display, and how will you format it?
- Will you use images?
The template provided to you uses p5js, which I assume most of you will use because you're familiar with it, but you're not constrained to it. Take some time to investigate how to format text to your liking, either by looking at official online documentation, online tutorials, or using AI.
Also consider - do you want your visualization to show the data from all records at once (as is done in the template), or just a subset of the records at a time (as is done in the weather app example).
This is your opportunity to get creative!