The third of the three Python programs shows how to use SQLite to create a relationship between two tables and then calculate a result using SciPy.
- [Narrator] Next, there are two pieces of data…that must be imported into the database.…These are identifier tables that describe data…in the vehicles and accidents tables.…This information is unusual because…it's an Excel file, not a CSV file.…It needs to be imported to the SQL lite…database using a different process.…This data is in the road accident safety guide XLS file…and if we open that, we'll see that there are several tabs.…The two tabs we are most interested in…is accident severity and vehicle type.…
I'm going to use Python's ability to manipulate…Excel files to complete this task.…Let's take a look at that code.…I've already opened the Python Idle Editor…and am now going to open up the script itself.…So I'll go to file, open, I'll navigate to the…exercise files, chapter three,…and we're going to open up the third import Python script.…Python requires a special library to open up Excel files.…
And, that library may not be installed in your system.…So, let's step through installing the xlrd library.…
Author
Released
10/13/2017- Strengths and weaknesses of SQLite
- Creating a database
- Joining data sets
- Calculations with SQLite and Python
- Searching a database
- Subqueries and queries in SQLite
- CRUD operations in SQLite with R
Skill Level Intermediate
Duration
Views
Related Courses
-
Database Clinic: MySQL
with Brad Wheeler1h 59m Intermediate
-
Introduction
-
Welcome1m 16s
-
The Database Clinic series1m 22s
-
-
1. SQLite in Five Minutes
-
A brief overview of SQLite2m 41s
-
Strengths of SQLite1m 33s
-
Weaknesses of SQLite1m 36s
-
-
2. Create a Database
-
Database creation2m 33s
-
Overview of solution1m 46s
-
-
3. Join Two Datasets
-
Join datasets2m 50s
-
Overview of solution3m 33s
-
Code review for R6m 45s
-
-
4. Search a Database
-
Search a database1m 51s
-
Overview of solution1m 19s
-
-
5. Create, Read, Update, and Delete Operations
-
CRUD operations2m 31s
-
Overview of solution1m 34s
-
-
6. Averages and Calculations
-
Calculations1m 59s
-
Overview of solution3m 51s
-
Create a forecast4m 57s
-
Insights on this problem2m 4s
-
-
Conclusion
-
Next steps59s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Import Excel files using Python