Skip to content

Instantly share code, notes, and snippets.

View brt-h's full-sized avatar

Robert Hyman brt-h

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / FINAL-ASSIGNMENT-SOLVED.ipynb
Created May 20, 2021 22:33
Python Project for Data Science Week 1 Final Project: Analyzing Stock Performance and Building a Dashboard
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / Final_Assignment_Webscraping.ipynb
Created May 18, 2021 22:08
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / Final_Assignment_Library.ipynb
Created May 18, 2021 22:08
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / WebScraping_Review_Lab.ipynb
Created May 18, 2021 21:27
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / MULTIPLETABLES-SOLVED.sql
Created May 14, 2021 01:07
Databases and SQL for Data Science with Python Week 3 Hands-on Lab: Working with Multiple Tables
--Databases and SQL for Data Science with Python Week 3 Hands-on Lab: Working with Multiple Tables--
--This Hands-on Lab requires you to have already completed Hands-on Lab : Create tables using SQL scripts and Load data into tables, link below--
--https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-DB0201EN-SkillsNetwork/labs/Labs_Coursera_V5/labs/Lab%20-%20Create%20tables%20using%20SQL%20scripts%20and%20Load%20data%20into%20tables/instructional-labs.md.html--
--syntax for implicit version of CROSS JOIN aka CARTESIAN JOIN statement-
--SELECT column_name(s)
--FROM table1, table2;
@brt-h
brt-h / SUBQUERIES-SOLVED.sql
Created May 12, 2021 21:22
Databases and SQL for Data Science with Python, Week 3, Hands-on Lab: Sub-queries and Nested SELECTs
--Databases and SQL for Data Science with Python Week 3 Hands-on Lab: Sub-queries and Nested SELECTs--
--This Hands-on Lab requires you to have already completed Hands-on Lab : Create tables using SQL scripts and Load data into tables, link below--
--https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBMDeveloperSkillsNetwork-DB0201EN-SkillsNetwork/labs/Labs_Coursera_V5/labs/Lab%20-%20Create%20tables%20using%20SQL%20scripts%20and%20Load%20data%20into%20tables/instructional-labs.md.html--
--Q1 Execute a failing query (i.e. one which gives an error) to retrieve all employees records whose salary is lower than the average salary.--
SELECT *
FROM EMPLOYEES
@brt-h
brt-h / PETRESCUE-CREATE-SOLVED.sql
Created May 12, 2021 20:10
Databases and SQL for Data Science with Python, Week 3, Hands-on Lab: Built-in functions
-- Drop the PETRESCUE table in case it exists
drop table PETRESCUE;
-- Create the PETRESCUE table
create table PETRESCUE (
ID INTEGER NOT NULL,
ANIMAL VARCHAR(20),
QUANTITY INTEGER,
COST DECIMAL(6,2),
RESCUEDATE DATE,
PRIMARY KEY (ID)
@brt-h
brt-h / PY0101EN-5.2_API_2.ipynb
Created April 15, 2021 23:23
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brt-h
brt-h / PY0101EN-5.1_Intro_API.ipynb
Created April 15, 2021 20:37
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.