LincolnC2008 / student3

MIT License
0 stars 0 forks source link

Data Structures #10

Open LincolnC2008 opened 2 months ago

LincolnC2008 commented 2 months ago

From VSCode using SQLite3 Editor, show your unique collection/table in database, display rows and columns in the table of the SQLite database.:

SQL

From VSCode model, show your unique code that was created to initialize table and create test data:

Screenshot 2024-05-07 144114

In VSCode using Debugger, show a list as extracted from database as Python objects:

python-object-list

In VSCode use Debugger and list, show two distinct example examples of dictionaries, show Keys/Values using debugger:

keys-values

In VSCode, show Python API code definition for request and response using GET, POST, UPDATE methods. Discuss algorithmic condition used to direct request to appropriate Python method based on request method:

Screenshot 2024-04-23 151211

In VSCode, show algorithmic conditions used to validate data on a POST condition:

Screenshot 2024-04-18 150858

In Postman, show URL request and Body requirements for GET, POST, and UPDATE methods:

Screenshot 2024-04-18 153423

In Postman, show the JSON response data for 200 success conditions on GET, POST, and UPDATE methods:

Screenshot 2024-04-23 152036

In Postman, show the JSON response for error for 400 when missing body on a POST request:

Screenshot 2024-04-23 152522

In Chrome inspect, show response of JSON objects from fetch of GET, POST, and UPDATE methods:

Screenshot 2024-04-18 154400

In the Chrome browser, show a demo (GET) of obtaining an Array of JSON objects that are formatted into the browsers screen:

Screenshot 2024-04-18 154413

In the Chrome browser, show a demo (POST or UPDATE) gathering and sending input and receiving a response that show update. Repeat this demo showing both success and failure:

Screenshot 2024-04-18 154452

Linear regression is a way to predict a value based on the relationship between two variables. It involves drawing a straight line through data points on a graph to best represent how one variable affects another. For instance, it can help predict sales based on advertising spend. The line's position and slope are calculated to show the relationship as accurately as possible.

A decision tree is a model used to make decisions by mapping out different choices and their possible outcomes, much like a flowchart. It starts with a question or decision at the top and branches out into possible responses or further questions, leading to final decisions or actions. This method is commonly used in both business for strategic planning and in data science for predicting outcomes based on input data.

Gurbop commented 2 months ago

.94/1 Lincoln completed all aspects of the review showing understanding in using different methods like post and. He shows how api data requests are used throughout the CPT project. Aditionally he completes extras explaining linear regression and decision tree models showing understanding in machine learning.