Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

how can i get the following in python? SQL connection to our SQLite database conn = sqlite 3 . connect ( memory . db )

how can i get the following in python? SQL connection to our SQLite database
conn = sqlite3.connect(memory.db)
create a variable to store SQL command
Execute SQL command using Pandas read sql function and store into variable
Additional SQL queries written and executed here if you need multiple pieces of data to answer this testable question. Check for data quality issues
Fix data quality issues if needed
Multivariate graphical and non-graphical EDA here to answer testable question give me the previous in python that i can use to answer the question (Which top 5 product categories have increased the most in sales year-over-year?) The dataset given to me is in the following
olist_customers_dataset.csv (includes customer_id, customer_unique_id, customer_zip_code_prefix, customer_city, and customer_state)
olist_geolocation_dataset.csv (includes geolocation_zip_code_prefix, geolocation_lat, geolocation_lng, geolocation_city, and geolocation_state)
olist_order_items_dataset.csv (includes order_id, order_item_id, product_id, seller_id, shipping_limit_date, and price, freight_value)
olist_order_payments_dataset.csv (includes order_id, payment_sequential, payment_type, payment_intallments, and payment_value)
olist_order_reviews_dataset.csv (includes review_id, order_id, review_score, review_comment_title, review_comment_message, review_creation_date, and review_answer_timestamp)
olist_orders_dataset.csv (includes order_id, customer_id, order_status, order_purchase_timestamp, order_approved_at, order_delivered_carrier_date, order_delivered_customer_date, and order_estimated_deliver_date)
olist_products_dataset.csv (includes product_id, product_category_name, product_name_length, product_description_length, product_photos_qty, product_weight_g, product_length_cm, product_height_cm, and product_width_cm
olist_sellers_dataset.csv (includes seller_id, seller_zip_code_prefix, seller_city, and seller_state)
product_category_name_translation.csv (includes product_category_name and product_category_name_english)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions