The instructions for this mini project are divided into the following subsections:
- Create the Category and Subcategory DataFrames
- Create the Campaign DataFrame
- Create the Contacts DataFrame
- Create the Crowdfunding Database
- Extract and transform the crowdfunding.xlsx Excel data to create a category DataFrame that has the following columns:
- A "category_id" column that has entries going sequentially from "cat1" to "catn", where n is the number of unique categories
- A "category" column that contains only the category titles
- The following image shows this category DataFrame:
-
Export the category DataFrame as category.csv and save it to your GitHub repository.
-
Extract and transform the crowdfunding.xlsx Excel data to create a subcategory DataFrame that has the following columns:
- A "subcategory_id" column that has entries going sequentially from "subcat1" to "subcatn", where n is the number of unique subcategories
- A "subcategory" column that contains only the subcategory titles
- The following image shows this subcategory DataFrame:
- Export the subcategory DataFrame as subcategory.csv and save it to your GitHub repository.
-
Extract and transform the crowdfunding.xlsx Excel data to create a campaign DataFrame has the following columns:
- The "cf_id" column
- The "contact_id" column
- The "company_name" column
- The "blurb" column, renamed to "description"
- The "goal" column, converted to the float data type
- The "pledged" column, converted to the float data type
- The "outcome" column
- The "backers_count" column
- The "country" column
- The "currency" column
- The "launched_at" column, renamed to "launch_date" and with the UTC times converted to the datetime format
- The "deadline" column, renamed to "end_date" and with the UTC times converted to the datetime format
- The "category_id" column, with unique identification numbers matching those in the "category_id" column of the category DataFrame
- The "subcategory_id" column, with the unique identification numbers matching those in the "subcategory_id" column of the subcategory DataFrame
- The following image shows this campaign DataFrame:
- Export the campaign DataFrame as campaign.csv and save it to your GitHub repository.
-
Choose one of the following two options for extracting and transforming the data from the contacts.xlsx Excel data:
- Option 1: Use Python dictionary methods.
- Option 2: Use regular expressions.
-
If you chose Option 1, complete the following steps: 2. Import the contacts.xlsx file into a DataFrame. 2. Iterate through the DataFrame, converting each row to a dictionary. 2. Iterate through each dictionary, doing the following: 2. Extract the dictionary values from the keys by using a Python list comprehension. 2. Add the values for each row to a new list. 2. Create a new DataFrame that contains the extracted data. 2. Split each "name" column value into a first and last name, and place each in a new column. 2. Clean and export the DataFrame as contacts.csv and save it to your GitHub repository.
-
If you chose Option 2, complete the following steps: 3. Import the contacts.xlsx file into a DataFrame. 3. Extract the "contact_id", "name", and "email" columns by using regular expressions. 3. Create a new DataFrame with the extracted data. 3. Convert the "contact_id" column to the integer type. 3. Split each "name" column value into a first and a last name, and place each in a new column. 3. Clean and then export the DataFrame as contacts.csv and save it to your GitHub repository.
-
Check that your final DataFrame resembles the one in the following image:
- Inspect the four CSV files, and then sketch an ERD of the tables by using QuickDBDLinks to an external site..
- Use the information from the ERD to create a table schema for each CSV file.
- Note: Remember to specify the data types, primary keys, foreign keys, and other constraints.
- Save the database schema as a Postgres file named crowdfunding_db_schema.sql, and save it to your GitHub repository.
- Create a new Postgres database, named crowdfunding_db.
- Using the database schema, create the tables in the correct order to handle the foreign keys.
- Verify the table creation by running a SELECT statement for each table.
- Import each CSV file into its corresponding SQL table.
- Verify that each table has the correct data by running a SELECT statement for each.
- To split each "category & sub-category" column value into "category" and "subcategory" column values, use df[["new_column1","new_column2"]] = df["column"].str.split(). Make sure to pass the correct parameters to the split() function.
- To get the unique category and subcategory values from the "category" and "subcategory" columns, create a NumPy array where the array length equals the number of unique categories and unique subcategories from each column. For information about how to do so, see numpy.arangeLinks to an external site. in the NumPy documentation.
- To create the category and subcategory identification numbers, use a list comprehension to add the "cat" string or the "subcat" string to each number in the category or the subcategory array, respectively.
- For more information about creating a new Pandas DataFrame, see the pandas.DataFrameLinks to an external site. in the Pandas documentation.
- To convert the "goal" and "pledged" columns to the float data type, use the astype() method.
- To convert the "launch_date" and "end_date" UTC times to the datetime format, see the Transform_Grocery_Orders_Solved.ipynb activity solution.
- For more information about how to add the "category_id" and "subcategory_id" unique identification numbers to the campaign DataFrame, see the pandas.DataFrame.mergeLinks to an external site. in the Pandas documentation.