You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contoso is a synthetic dataset containing sample sales transaction data for the fictional "Contoso" company. It includes various supporting tables for business intelligence, such as customer, store, product, and currency exchange data.
8
3
9
-
You can either load the datasets directly or use the function `create_contoso_duckdb()` to create a DuckDB database that contains the following tables:
10
-
11
-
- sales
12
-
- customer
13
-
- store
14
-
- product
15
-
- fx
16
-
- date
17
-
- order
18
-
- orderrows
4
+
# contoso
19
5
20
-
This dataset is perfect for practicing time series analysis, financial modeling, or any business intelligence-related tasks.
6
+
Contoso is a synthetic dataset containing sample sales transaction data
7
+
for the fictional “Contoso” company. It includes various supporting
8
+
tables for business intelligence, such as customer, store, product, and
9
+
currency exchange data.
10
+
11
+
You can either load the datasets directly or use the function
12
+
`create_contoso_duckdb()` to create a DuckDB database that contains the
13
+
following tables:
14
+
15
+
-**sales**:
16
+
- Contains information about sales transactions, including the total
17
+
sales amount, customer, store, and product involved.
18
+
-**customer**:
19
+
- Contains details about customers, such as customer key, name,
20
+
address, and demographic information.
21
+
-**store**:
22
+
- Contains information about stores, including store key, name,
23
+
location, and related details.
24
+
-**product**:
25
+
- Contains information about products, such as product key, name,
26
+
category, and price.
27
+
-**fx**:
28
+
- Contains foreign exchange rate data, mapping currency pairs to their
29
+
exchange rates on specific dates.
30
+
-**date**:
31
+
- Contains date-related information, including date, week, month,
32
+
quarter, and year for use in time-based analysis.
33
+
-**order**:
34
+
- Contains information about individual orders, including order key,
35
+
customer key, order date, and store information.
36
+
-**orderrows**:
37
+
- Contains detailed line items for each order, including product key,
38
+
quantity, and price for each item in the order.
39
+
40
+
The Contoso dataset is a fictional set of data created by Microsoft. It
41
+
is commonly used for educational and demonstration purposes to showcase
42
+
various features of data analysis, business intelligence tools, and data
43
+
processing techniques
44
+
45
+
This dataset is perfect for practicing time series analysis, financial
46
+
modeling, or any business intelligence-related tasks.
Contoso is a synthetic dataset containing sample sales transaction data for the fictional "Contoso" company. It includes various supporting tables for business intelligence, such as customer, store, product, and currency exchange data.
9
+
10
+
The package comes with the following datasets:
11
+
12
+
-**sales**:
13
+
- Contains information about sales transactions, including the total sales amount, customer, store, and product involved.
14
+
15
+
-**customer**:
16
+
- Contains details about customers, such as customer key, name, address, and demographic information.
17
+
18
+
-**store**:
19
+
- Contains information about stores, including store key, name, location, and related details.
20
+
21
+
-**product**:
22
+
- Contains information about products, such as product key, name, category, and price.
23
+
24
+
-**fx**:
25
+
- Contains foreign exchange rate data, mapping currency pairs to their exchange rates on specific dates.
26
+
27
+
-**date**:
28
+
- Contains date-related information, including date, week, month, quarter, and year for use in time-based analysis.
29
+
30
+
-**order**:
31
+
- Contains information about individual orders, including order key, customer key, order date, and store information.
32
+
33
+
-**orderrows**:
34
+
- Contains detailed line items for each order, including product key, quantity, and price for each item in the order.
35
+
36
+
37
+
You can either load the datasets directly or use the function `create_contoso_duckdb()` to create a DuckDB that contains the following tables:
38
+
39
+
The Contoso dataset is a fictional set of data created by Microsoft. It is commonly used for educational and demonstration purposes to showcase various features of data analysis, business intelligence tools, and data processing techniques
40
+
41
+
This dataset is perfect for practicing time series analysis, financial modeling, or any business intelligence-related tasks.
42
+
43
+
The data is sourced from the [sqlbi](https://github.com/sql-bi/Contoso-Data-Generator-V2-Data/releases/tag/ready-to-use-data) github site
44
+
45
+
## Dataset overview
46
+
47
+
48
+

49
+
50
+
51
+
The relationship keys that join each of the tables are listed below.
0 commit comments