File size: 4,662 Bytes
2eae90c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
from datetime import datetime

import pandas as pd

from pandas_queries import utils

Q_NUM = 7


def q():
    nation_ds = utils.get_nation_ds
    customer_ds = utils.get_customer_ds
    line_item_ds = utils.get_line_item_ds
    orders_ds = utils.get_orders_ds
    supplier_ds = utils.get_supplier_ds

    # first call one time to cache in case we don't include the IO times
    nation_ds()
    customer_ds()
    line_item_ds()
    orders_ds()
    supplier_ds()

    def query():
        nonlocal nation_ds
        nonlocal customer_ds
        nonlocal line_item_ds
        nonlocal orders_ds
        nonlocal supplier_ds

        nation_ds = nation_ds()
        customer_ds = customer_ds()
        line_item_ds = line_item_ds()
        orders_ds = orders_ds()
        supplier_ds = supplier_ds()

        lineitem_filtered = line_item_ds[
            (line_item_ds["l_shipdate"] >= datetime(1995, 1, 1))
            & (line_item_ds["l_shipdate"] < datetime(1997, 1, 1))
        ]
        lineitem_filtered["l_year"] = lineitem_filtered["l_shipdate"].dt.year
        lineitem_filtered["revenue"] = lineitem_filtered["l_extendedprice"] * (
            1.0 - lineitem_filtered["l_discount"]
        )
        lineitem_filtered = lineitem_filtered.loc[
            :, ["l_orderkey", "l_suppkey", "l_year", "revenue"]
        ]
        supplier_filtered = supplier_ds.loc[:, ["s_suppkey", "s_nationkey"]]
        orders_filtered = orders_ds.loc[:, ["o_orderkey", "o_custkey"]]
        customer_filtered = customer_ds.loc[:, ["c_custkey", "c_nationkey"]]
        n1 = nation_ds[(nation_ds["n_name"] == "FRANCE")].loc[
            :, ["n_nationkey", "n_name"]
        ]
        n2 = nation_ds[(nation_ds["n_name"] == "GERMANY")].loc[
            :, ["n_nationkey", "n_name"]
        ]

        # ----- do nation 1 -----
        N1_C = customer_filtered.merge(
            n1, left_on="c_nationkey", right_on="n_nationkey", how="inner"
        )
        N1_C = N1_C.drop(columns=["c_nationkey", "n_nationkey"]).rename(
            columns={"n_name": "cust_nation"}
        )
        N1_C_O = N1_C.merge(
            orders_filtered, left_on="c_custkey", right_on="o_custkey", how="inner"
        )
        N1_C_O = N1_C_O.drop(columns=["c_custkey", "o_custkey"])

        N2_S = supplier_filtered.merge(
            n2, left_on="s_nationkey", right_on="n_nationkey", how="inner"
        )
        N2_S = N2_S.drop(columns=["s_nationkey", "n_nationkey"]).rename(
            columns={"n_name": "supp_nation"}
        )
        N2_S_L = N2_S.merge(
            lineitem_filtered, left_on="s_suppkey", right_on="l_suppkey", how="inner"
        )
        N2_S_L = N2_S_L.drop(columns=["s_suppkey", "l_suppkey"])

        total1 = N1_C_O.merge(
            N2_S_L, left_on="o_orderkey", right_on="l_orderkey", how="inner"
        )
        total1 = total1.drop(columns=["o_orderkey", "l_orderkey"])

        # ----- do nation 2 ----- (same as nation 1 section but with nation 2)
        N2_C = customer_filtered.merge(
            n2, left_on="c_nationkey", right_on="n_nationkey", how="inner"
        )
        N2_C = N2_C.drop(columns=["c_nationkey", "n_nationkey"]).rename(
            columns={"n_name": "cust_nation"}
        )
        N2_C_O = N2_C.merge(
            orders_filtered, left_on="c_custkey", right_on="o_custkey", how="inner"
        )
        N2_C_O = N2_C_O.drop(columns=["c_custkey", "o_custkey"])

        N1_S = supplier_filtered.merge(
            n1, left_on="s_nationkey", right_on="n_nationkey", how="inner"
        )
        N1_S = N1_S.drop(columns=["s_nationkey", "n_nationkey"]).rename(
            columns={"n_name": "supp_nation"}
        )
        N1_S_L = N1_S.merge(
            lineitem_filtered, left_on="s_suppkey", right_on="l_suppkey", how="inner"
        )
        N1_S_L = N1_S_L.drop(columns=["s_suppkey", "l_suppkey"])

        total2 = N2_C_O.merge(
            N1_S_L, left_on="o_orderkey", right_on="l_orderkey", how="inner"
        )
        total2 = total2.drop(columns=["o_orderkey", "l_orderkey"])

        # concat results
        total = pd.concat([total1, total2])
        result_df = (
            total.groupby(["supp_nation", "cust_nation", "l_year"])
            .revenue.agg("sum")
            .reset_index()
        )
        result_df.columns = ["supp_nation", "cust_nation", "l_year", "revenue"]

        result_df = result_df.sort_values(
            by=["supp_nation", "cust_nation", "l_year"],
            ascending=[
                True,
                True,
                True,
            ],
        )
        return result_df

    utils.run_query(Q_NUM, query)


if __name__ == "__main__":
    q()