<link href="https://cdn.webdatarocks.com/latest/theme/stripedteal/webdatarocks.min.css" rel="stylesheet" />
<script src="https://cdn.webdatarocks.com/latest/webdatarocks.toolbar.min.js"></script>
<script src="https://cdn.webdatarocks.com/latest/webdatarocks.js"></script>
<h1>Christmas Sales!</h1>
<div id="wdr-component"></div>

<div class="snowflake-area">
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
  <div class="snowflake">❄️</div>
</div>
body {
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  background-color: #f0f8ff;
}

.snowflake {
  position: absolute;
  top: -5%;
  font-size: 2rem;
  animation: fall linear infinite;
  opacity: 0.8;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

.snowflake:nth-child(1) {
  left: 10%;
  animation-duration: 5s;
}
.snowflake:nth-child(2) {
  left: 20%;
  animation-duration: 3s;
  font-size: 1.5rem;
}
.snowflake:nth-child(3) {
  left: 30%;
  animation-duration: 6s;
  font-size: 2.5rem;
}
.snowflake:nth-child(4) {
  left: 40%;
  animation-duration: 4s;
}
.snowflake:nth-child(5) {
  left: 50%;
  animation-duration: 7s;
  font-size: 2rem;
}
.snowflake:nth-child(6) {
  left: 60%;
  animation-duration: 4.5s;
  font-size: 2.2rem;
}
.snowflake:nth-child(7) {
  left: 70%;
  animation-duration: 6.5s;
}
.snowflake:nth-child(8) {
  left: 80%;
  animation-duration: 3.5s;
  font-size: 1.8rem;
}
.snowflake:nth-child(9) {
  left: 90%;
  animation-duration: 5.5s;
}
.snowflake:nth-child(10) {
  left: 95%;
  animation-duration: 4s;
  font-size: 2.3rem;
}

h1 {
  color: #069587;
}

h1::before {
  content: "🎁";
  font-size: 25px;
  display: inline-block;
  margin-right: 8px;
  animation: dance 1.5s infinite ease-in-out;
}

@keyframes dance {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
  75% {
    transform: translateY(-5px);
  }
}

#wdr-pivot-view #wdr-grid-view div.hidden {
  background: #ffcc33;
  position: relative;
  overflow: hidden;
  color: #ffcc33;
}

#wdr-pivot-view #wdr-grid-view div.hidden::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 5px;
  background: #c4382b;
  transform: translateY(-50%);
}

#wdr-pivot-view #wdr-grid-view div.hidden::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 5px;
  height: 100%;
  background: #c4382b;
  transform: translateX(-50%);
}

#wdr-pivot-view #wdr-grid-view div.revealed {
  background: white;
  color: black;
  font-weight: bold;
}
var pivot = new WebDataRocks({
  container: "wdr-component",
  height: 300,
  width: 800,
  report: {
    dataSource: {
      data: getData(),
    },
    slice: {
      rows: [
        {
          uniqueName: "Category"
        }
      ],
      columns: [
        {
          uniqueName: "Measures"
        }
      ],
      measures: [
        {
          uniqueName: "Quantity",
          aggregation: "sum",
        },
        {
          uniqueName: "OnlineOrderFlag",
          aggregation: "sum",
        //  caption: "Amount of online purchases"
        },
        {
          uniqueName: "TotalPrice",
          aggregation: "sum",
          format: "price",
      //    caption: "Total money spent" 
        },
      ],
    },
    options: {
      showAggregationLabels: false
    },
    formats: [
      {
        name: "price",
        thousandsSeparator: " ",
        decimalSeparator: ".",
        currencySymbol: "$",
        currencySymbolAlign: "right",
        nullValue: "",
        maxDecimalPlaces: 2,
        textAlign: "right",
        isPercent: false
      },
    ]
  },
});

const visibleNumber = {
  rowIndex: undefined,
  columnIndex: undefined,
};

// Handle cell click event
pivot.on("cellclick", (cell) => {
  if (cell.columnIndex === 3) {
    // Update visibleNumber only for column 3
    visibleNumber.rowIndex = cell.rowIndex;
    visibleNumber.columnIndex = cell.columnIndex;
    pivot.refresh(); // Refresh to apply customization
  }
});

pivot.customizeCell((cellBuilder, cellData) => {
  // Check if the cell is in column 3
  if (cellData.type === "value" && cellData.columnIndex === 3) {
    // Check if the cell should be revealed
    if (
      cellData.rowIndex === visibleNumber.rowIndex &&
      cellData.columnIndex === visibleNumber.columnIndex
    ) {
      cellBuilder.addClass("revealed");
    } else {
      cellBuilder.addClass("hidden");
    }
  }
});

function getData() {
  return [
  {'TransactionID': 3532, 'CustomerID': 6, 'Age': 48, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 255, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 28.98812153, 'TotalPrice': 57.97624305, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3376, 'CustomerID': 337, 'Age': 46, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 195, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 40.11835445, 'TotalPrice': 120.3550633, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 3548, 'CustomerID': 141, 'Age': 39, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 348, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 55.53361047, 'TotalPrice': 55.53361047, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5691, 'CustomerID': 436, 'Age': 58, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 49.0, 'OnlineOrderFlag': 'false', 'ProductID': 91, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 94.04886149, 'TotalPrice': 94.04886149, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8445, 'CustomerID': 441, 'Age': 33, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 398, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 70.14254239, 'TotalPrice': 280.5701696, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2931, 'CustomerID': 81, 'Age': 30, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 613, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 18.68921169, 'TotalPrice': 37.37842338, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8575, 'CustomerID': 201, 'Age': 35, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 5.0, 'OnlineOrderFlag': 'false', 'ProductID': 507, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 10.06349598, 'TotalPrice': 30.19048795, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3105, 'CustomerID': 326, 'Age': 58, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 277, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 30.2052102, 'TotalPrice': 60.4104204, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8890, 'CustomerID': 273, 'Age': 70, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 46.0, 'OnlineOrderFlag': 'false', 'ProductID': 514, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 86.44500972, 'TotalPrice': 259.3350292, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8911, 'CustomerID': 221, 'Age': 60, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 227, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 40.32991713, 'TotalPrice': 161.3196685, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5079, 'CustomerID': 206, 'Age': 47, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 583, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 19.9752086, 'TotalPrice': 79.90083439, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4617, 'CustomerID': 182, 'Age': 20, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 937, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 25.98876668, 'TotalPrice': 25.98876668, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8601, 'CustomerID': 181, 'Age': 51, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 99.0, 'OnlineOrderFlag': 'false', 'ProductID': 709, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 43.49611297, 'TotalPrice': 86.99222594, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1626, 'CustomerID': 450, 'Age': 37, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 36.0, 'OnlineOrderFlag': 'false', 'ProductID': 444, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 86.33655964, 'TotalPrice': 431.6827982, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7166, 'CustomerID': 157, 'Age': 19, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 554, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 33.83348, 'TotalPrice': 101.50044, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6256, 'CustomerID': 82, 'Age': 64, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 310, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 66.28265168, 'TotalPrice': 66.28265168, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9194, 'CustomerID': 129, 'Age': 34, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 293, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 24.2105917, 'TotalPrice': 48.42118339, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7369, 'CustomerID': 184, 'Age': 19, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 87.0, 'OnlineOrderFlag': 'false', 'ProductID': 888, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 38.305216, 'TotalPrice': 114.915648, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1664, 'CustomerID': 330, 'Age': 56, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 776, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 86.06224004, 'TotalPrice': 86.06224004, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7756, 'CustomerID': 407, 'Age': 32, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 93.0, 'OnlineOrderFlag': 'false', 'ProductID': 718, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 68.72362277, 'TotalPrice': 343.6181139, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6348, 'CustomerID': 144, 'Age': 27, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 53.0, 'OnlineOrderFlag': 'false', 'ProductID': 533, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 12.917666969999999, 'TotalPrice': 38.7530009, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 492, 'CustomerID': 429, 'Age': 22, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 451, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 33.77822111, 'TotalPrice': 67.55644223, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3225, 'CustomerID': 362, 'Age': 20, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 903, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 21.40361658, 'TotalPrice': 21.40361658, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 7790, 'CustomerID': 3, 'Age': 55, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 45.0, 'OnlineOrderFlag': 'false', 'ProductID': 634, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 92.36504923, 'TotalPrice': 184.7300985, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1899, 'CustomerID': 46, 'Age': 69, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 405, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 10.563289, 'TotalPrice': 52.81644499, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3805, 'CustomerID': 290, 'Age': 40, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 454, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 68.93919346, 'TotalPrice': 206.8175804, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8869, 'CustomerID': 276, 'Age': 54, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 252, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 26.3423315, 'TotalPrice': 79.02699451, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5389, 'CustomerID': 255, 'Age': 70, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 555, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 97.66919061, 'TotalPrice': 488.3459531, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1943, 'CustomerID': 42, 'Age': 57, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 943, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 26.42130203, 'TotalPrice': 105.6852081, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4921, 'CustomerID': 98, 'Age': 65, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 220, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 29.35377669, 'TotalPrice': 146.7688835, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4354, 'CustomerID': 68, 'Age': 25, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 294, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 33.31410745, 'TotalPrice': 133.2564298, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 6108, 'CustomerID': 478, 'Age': 37, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 86.0, 'OnlineOrderFlag': 'false', 'ProductID': 714, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 40.95220776, 'TotalPrice': 122.8566233, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7152, 'CustomerID': 173, 'Age': 38, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 81.0, 'OnlineOrderFlag': 'false', 'ProductID': 179, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 55.80082935, 'TotalPrice': 55.80082935, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8716, 'CustomerID': 240, 'Age': 57, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 81.0, 'OnlineOrderFlag': 'false', 'ProductID': 625, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 60.36299258, 'TotalPrice': 301.8149629, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9870, 'CustomerID': 468, 'Age': 18, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 798, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 60.40266015, 'TotalPrice': 181.2079805, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6203, 'CustomerID': 286, 'Age': 58, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 648, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 30.09224523, 'TotalPrice': 90.27673568, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5927, 'CustomerID': 65, 'Age': 50, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 668, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 76.96079228, 'TotalPrice': 384.8039614, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7319, 'CustomerID': 80, 'Age': 57, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 904, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 62.27829914, 'TotalPrice': 62.27829914, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 612, 'CustomerID': 464, 'Age': 25, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 500, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 98.91039369, 'TotalPrice': 395.6415748, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 691, 'CustomerID': 284, 'Age': 63, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 42.0, 'OnlineOrderFlag': 'false', 'ProductID': 342, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 73.36204646, 'TotalPrice': 73.36204646, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1840, 'CustomerID': 236, 'Age': 30, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 797, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 25.38343615, 'TotalPrice': 126.9171808, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8914, 'CustomerID': 357, 'Age': 52, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 628, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 38.42404204, 'TotalPrice': 76.84808409, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2171, 'CustomerID': 42, 'Age': 23, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 803, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 14.34888428, 'TotalPrice': 57.39553714, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5901, 'CustomerID': 454, 'Age': 35, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 455, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 66.35828928, 'TotalPrice': 66.35828928, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8020, 'CustomerID': 350, 'Age': 33, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 747, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 60.68958073, 'TotalPrice': 60.68958073, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4220, 'CustomerID': 378, 'Age': 20, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 465, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 30.3387899, 'TotalPrice': 151.6939495, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2079, 'CustomerID': 398, 'Age': 36, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 65.0, 'OnlineOrderFlag': 'false', 'ProductID': 592, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 56.51399094, 'TotalPrice': 282.5699547, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8014, 'CustomerID': 218, 'Age': 42, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 278, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 50.54088438, 'TotalPrice': 252.7044219, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6623, 'CustomerID': 116, 'Age': 62, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 50.0, 'OnlineOrderFlag': 'false', 'ProductID': 526, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 53.12338909, 'TotalPrice': 53.12338909, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6486, 'CustomerID': 340, 'Age': 67, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 44.0, 'OnlineOrderFlag': 'false', 'ProductID': 199, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 28.25907923, 'TotalPrice': 56.51815846, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5966, 'CustomerID': 42, 'Age': 23, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 79.0, 'OnlineOrderFlag': 'false', 'ProductID': 632, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 23.87569273, 'TotalPrice': 119.3784636, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5998, 'CustomerID': 382, 'Age': 50, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 201, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 80.20489474, 'TotalPrice': 240.6146842, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 4981, 'CustomerID': 439, 'Age': 55, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 490, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 81.6850964, 'TotalPrice': 163.3701928, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9085, 'CustomerID': 247, 'Age': 64, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 586, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 47.78381883, 'TotalPrice': 47.78381883, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4907, 'CustomerID': 72, 'Age': 51, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 553, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 61.42754518, 'TotalPrice': 184.2826355, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5586, 'CustomerID': 256, 'Age': 25, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 11.0, 'OnlineOrderFlag': 'false', 'ProductID': 933, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 30.86440748, 'TotalPrice': 61.72881496, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8461, 'CustomerID': 134, 'Age': 57, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 712, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 78.52766301, 'TotalPrice': 235.582989, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 8496, 'CustomerID': 349, 'Age': 25, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 963, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 47.92678284, 'TotalPrice': 143.7803485, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1860, 'CustomerID': 195, 'Age': 56, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 30, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 24.25519129, 'TotalPrice': 121.2759565, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6509, 'CustomerID': 118, 'Age': 44, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 589, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 23.84283728, 'TotalPrice': 23.84283728, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1870, 'CustomerID': 48, 'Age': 65, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 151, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 87.8857292, 'TotalPrice': 351.5429168, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8351, 'CustomerID': 480, 'Age': 44, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 132, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 13.79698435, 'TotalPrice': 41.39095306, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1727, 'CustomerID': 104, 'Age': 54, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 72.0, 'OnlineOrderFlag': 'false', 'ProductID': 641, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 26.21025021, 'TotalPrice': 78.63075063, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9251, 'CustomerID': 131, 'Age': 70, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 79.0, 'OnlineOrderFlag': 'false', 'ProductID': 327, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 61.62024643, 'TotalPrice': 246.4809857, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8232, 'CustomerID': 487, 'Age': 51, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 402, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 69.39662318, 'TotalPrice': 69.39662318, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6618, 'CustomerID': 302, 'Age': 27, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 400, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 70.47994213, 'TotalPrice': 352.3997107, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 934, 'CustomerID': 257, 'Age': 59, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 363, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 75.21087843, 'TotalPrice': 376.0543922, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8103, 'CustomerID': 255, 'Age': 38, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 926, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 33.52060541, 'TotalPrice': 33.52060541, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6230, 'CustomerID': 481, 'Age': 59, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 17.0, 'OnlineOrderFlag': 'false', 'ProductID': 578, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 15.8998364, 'TotalPrice': 63.59934561, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5234, 'CustomerID': 24, 'Age': 68, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 55.0, 'OnlineOrderFlag': 'false', 'ProductID': 730, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 18.5945259, 'TotalPrice': 18.5945259, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1057, 'CustomerID': 54, 'Age': 60, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 809, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 62.35519196, 'TotalPrice': 124.7103839, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9742, 'CustomerID': 481, 'Age': 41, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 14.0, 'OnlineOrderFlag': 'false', 'ProductID': 760, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 91.19775128, 'TotalPrice': 273.5932538, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 4687, 'CustomerID': 190, 'Age': 34, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 532, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 67.07588255, 'TotalPrice': 335.3794128, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3448, 'CustomerID': 32, 'Age': 38, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 464, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 37.05406503, 'TotalPrice': 37.05406503, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4698, 'CustomerID': 357, 'Age': 63, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 741, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 75.74133431999999, 'TotalPrice': 378.7066716, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4437, 'CustomerID': 356, 'Age': 33, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 919, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 48.52360681, 'TotalPrice': 48.52360681, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5977, 'CustomerID': 398, 'Age': 59, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 32.0, 'OnlineOrderFlag': 'false', 'ProductID': 699, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 39.16665154, 'TotalPrice': 78.33330309, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5153, 'CustomerID': 69, 'Age': 33, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 759, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 69.22894754, 'TotalPrice': 346.1447377, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5044, 'CustomerID': 397, 'Age': 21, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 626, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 82.98888311, 'TotalPrice': 82.98888311, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5490, 'CustomerID': 300, 'Age': 44, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 618, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 81.28273983, 'TotalPrice': 406.4136992, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1642, 'CustomerID': 228, 'Age': 33, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 750, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 19.33045131, 'TotalPrice': 96.65225656, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3863, 'CustomerID': 117, 'Age': 45, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 21.0, 'OnlineOrderFlag': 'false', 'ProductID': 457, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 13.4852633, 'TotalPrice': 67.42631652, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9214, 'CustomerID': 140, 'Age': 50, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 59, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 62.38627544, 'TotalPrice': 187.1588263, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 1448, 'CustomerID': 54, 'Age': 38, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 822, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 63.676312, 'TotalPrice': 191.028936, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6017, 'CustomerID': 75, 'Age': 45, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 293, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 58.63468095, 'TotalPrice': 234.5387238, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9080, 'CustomerID': 139, 'Age': 18, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 33.0, 'OnlineOrderFlag': 'false', 'ProductID': 354, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 68.7862931, 'TotalPrice': 68.7862931, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4315, 'CustomerID': 64, 'Age': 43, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 313, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 86.29672168, 'TotalPrice': 258.8901651, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4999, 'CustomerID': 464, 'Age': 40, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 858, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 24.6885615, 'TotalPrice': 24.6885615, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5205, 'CustomerID': 471, 'Age': 58, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 400, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 14.61196807, 'TotalPrice': 43.83590421, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2737, 'CustomerID': 385, 'Age': 57, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 498, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 94.11817253, 'TotalPrice': 94.11817253, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4746, 'CustomerID': 474, 'Age': 63, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 917, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 25.12606479, 'TotalPrice': 125.630324, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4490, 'CustomerID': 187, 'Age': 38, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 41.0, 'OnlineOrderFlag': 'false', 'ProductID': 616, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 86.52259325, 'TotalPrice': 86.52259325, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 552, 'CustomerID': 286, 'Age': 32, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 80.0, 'OnlineOrderFlag': 'false', 'ProductID': 443, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 43.0317568, 'TotalPrice': 129.0952704, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 1050, 'CustomerID': 6, 'Age': 40, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 74.0, 'OnlineOrderFlag': 'false', 'ProductID': 114, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 90.60120431, 'TotalPrice': 362.4048172, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 7759, 'CustomerID': 482, 'Age': 41, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 63.0, 'OnlineOrderFlag': 'false', 'ProductID': 846, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 16.22928289, 'TotalPrice': 81.14641447, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8283, 'CustomerID': 500, 'Age': 26, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 328, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 54.25487741, 'TotalPrice': 162.7646322, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3151, 'CustomerID': 188, 'Age': 53, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 621, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 32.54278802, 'TotalPrice': 65.08557604, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5547, 'CustomerID': 239, 'Age': 27, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 30.0, 'OnlineOrderFlag': 'false', 'ProductID': 261, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 35.76752403, 'TotalPrice': 35.76752403, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1580, 'CustomerID': 321, 'Age': 58, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 92.0, 'OnlineOrderFlag': 'false', 'ProductID': 685, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 69.79914472, 'TotalPrice': 69.79914472, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8573, 'CustomerID': 259, 'Age': 52, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 763, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 34.53915103, 'TotalPrice': 34.53915103, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5239, 'CustomerID': 71, 'Age': 46, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 168, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 69.86761978, 'TotalPrice': 139.7352396, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5690, 'CustomerID': 214, 'Age': 43, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 583, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 19.27535045, 'TotalPrice': 19.27535045, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6262, 'CustomerID': 54, 'Age': 68, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 5.0, 'OnlineOrderFlag': 'false', 'ProductID': 16, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 74.37660024, 'TotalPrice': 297.506401, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 7662, 'CustomerID': 12, 'Age': 67, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 82.0, 'OnlineOrderFlag': 'false', 'ProductID': 276, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 19.89137404, 'TotalPrice': 19.89137404, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9813, 'CustomerID': 155, 'Age': 65, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 20.0, 'OnlineOrderFlag': 'false', 'ProductID': 856, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 74.51298642, 'TotalPrice': 372.5649321, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 194, 'CustomerID': 41, 'Age': 42, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 39, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 49.84778564, 'TotalPrice': 99.69557127, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2122, 'CustomerID': 6, 'Age': 54, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 371, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 94.10512935, 'TotalPrice': 282.315388, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 100, 'CustomerID': 120, 'Age': 19, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 70.0, 'OnlineOrderFlag': 'false', 'ProductID': 13, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 20.04152523, 'TotalPrice': 80.16610091, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4379, 'CustomerID': 123, 'Age': 21, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 389, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 86.14956609, 'TotalPrice': 344.5982643, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5963, 'CustomerID': 49, 'Age': 49, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 96, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 94.52041339, 'TotalPrice': 189.0408268, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4311, 'CustomerID': 135, 'Age': 35, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 372, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 68.51523778, 'TotalPrice': 342.5761889, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3117, 'CustomerID': 302, 'Age': 25, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 2.0, 'OnlineOrderFlag': 'false', 'ProductID': 7, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 52.87517615, 'TotalPrice': 264.3758808, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 3302, 'CustomerID': 371, 'Age': 69, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'true', 'OnlineOrderFlag': 'false', 'ProductID': 323, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 47.23227537, 'TotalPrice': 236.1613768, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6506, 'CustomerID': 440, 'Age': 54, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'true', 'OnlineOrderFlag': 'false', 'ProductID': 787, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 61.04743535, 'TotalPrice': 305.2371767, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3066, 'CustomerID': 260, 'Age': 51, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 470, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 11.65107049, 'TotalPrice': 58.25535244, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 3759, 'CustomerID': 307, 'Age': 58, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 680, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 96.36612706, 'TotalPrice': 96.36612706, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 421, 'CustomerID': 298, 'Age': 37, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 36.0, 'OnlineOrderFlag': 'false', 'ProductID': 935, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 23.34300445, 'TotalPrice': 70.02901335, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 4288, 'CustomerID': 131, 'Age': 29, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 377, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 74.13119319, 'TotalPrice': 74.13119319, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2776, 'CustomerID': 413, 'Age': 70, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 885, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 92.61550102, 'TotalPrice': 463.0775051, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1148, 'CustomerID': 128, 'Age': 51, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 627, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 97.00840161, 'TotalPrice': 97.00840161, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8524, 'CustomerID': 311, 'Age': 67, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 172, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 23.7430004, 'TotalPrice': 94.97200161, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 9612, 'CustomerID': 201, 'Age': 45, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 25.0, 'OnlineOrderFlag': 'false', 'ProductID': 840, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 70.40120735, 'TotalPrice': 281.6048294, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 1610, 'CustomerID': 433, 'Age': 32, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 93.0, 'OnlineOrderFlag': 'false', 'ProductID': 540, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 56.46711188, 'TotalPrice': 225.8684475, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 2893, 'CustomerID': 444, 'Age': 57, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 44.0, 'OnlineOrderFlag': 'false', 'ProductID': 294, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 62.63380656, 'TotalPrice': 125.2676131, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 9481, 'CustomerID': 24, 'Age': 70, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 33.0, 'OnlineOrderFlag': 'false', 'ProductID': 716, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 87.41995102, 'TotalPrice': 437.0997551, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6274, 'CustomerID': 87, 'Age': 45, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 386, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 50.54698086, 'TotalPrice': 101.0939617, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3184, 'CustomerID': 69, 'Age': 23, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 344, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 32.3078966, 'TotalPrice': 96.92368981, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7735, 'CustomerID': 180, 'Age': 60, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 201, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 32.12694615, 'TotalPrice': 160.6347307, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7623, 'CustomerID': 156, 'Age': 53, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 22, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 86.94077696, 'TotalPrice': 86.94077696, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6498, 'CustomerID': 486, 'Age': 29, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 659, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 78.79273855, 'TotalPrice': 393.9636928, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7212, 'CustomerID': 244, 'Age': 33, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 62.0, 'OnlineOrderFlag': 'false', 'ProductID': 66, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 37.53538769, 'TotalPrice': 187.6769384, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2242, 'CustomerID': 33, 'Age': 26, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 87.0, 'OnlineOrderFlag': 'false', 'ProductID': 323, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 62.04636904, 'TotalPrice': 62.04636904, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 7385, 'CustomerID': 215, 'Age': 41, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 94.0, 'OnlineOrderFlag': 'false', 'ProductID': 592, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 77.23418395, 'TotalPrice': 77.23418395, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9192, 'CustomerID': 14, 'Age': 41, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 298, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 58.71983054, 'TotalPrice': 176.1594916, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3891, 'CustomerID': 296, 'Age': 65, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 134, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 31.35169193, 'TotalPrice': 31.35169193, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9077, 'CustomerID': 4, 'Age': 53, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 11, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 81.28755552, 'TotalPrice': 406.4377776, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 9899, 'CustomerID': 152, 'Age': 35, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 13.0, 'OnlineOrderFlag': 'false', 'ProductID': 525, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 85.04139135, 'TotalPrice': 340.1655654, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4454, 'CustomerID': 455, 'Age': 55, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 55, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 74.99694323, 'TotalPrice': 374.9847162, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4944, 'CustomerID': 85, 'Age': 62, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 14.0, 'OnlineOrderFlag': 'false', 'ProductID': 4, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 90.56846811, 'TotalPrice': 181.1369362, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1154, 'CustomerID': 32, 'Age': 33, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 165, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 70.48323879, 'TotalPrice': 352.4161939, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3515, 'CustomerID': 394, 'Age': 51, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 17.0, 'OnlineOrderFlag': 'false', 'ProductID': 914, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 45.40306991, 'TotalPrice': 181.6122796, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 1149, 'CustomerID': 175, 'Age': 44, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 84, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 46.34006, 'TotalPrice': 139.02018, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8440, 'CustomerID': 437, 'Age': 53, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 12.0, 'OnlineOrderFlag': 'false', 'ProductID': 235, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 12.76999795, 'TotalPrice': 63.84998977, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1142, 'CustomerID': 101, 'Age': 53, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 273, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 17.3409635, 'TotalPrice': 52.02289049, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7245, 'CustomerID': 234, 'Age': 33, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 995, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 44.56406182, 'TotalPrice': 222.8203091, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9588, 'CustomerID': 402, 'Age': 62, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 2.0, 'OnlineOrderFlag': 'false', 'ProductID': 464, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 36.89159074, 'TotalPrice': 147.566363, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 3100, 'CustomerID': 380, 'Age': 44, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 41.0, 'OnlineOrderFlag': 'false', 'ProductID': 882, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 32.40909663, 'TotalPrice': 129.6363865, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2804, 'CustomerID': 268, 'Age': 58, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 60.0, 'OnlineOrderFlag': 'false', 'ProductID': 909, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 11.35265645, 'TotalPrice': 45.41062579, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6833, 'CustomerID': 261, 'Age': 45, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 704, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 70.10787366, 'TotalPrice': 210.323621, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5494, 'CustomerID': 136, 'Age': 67, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 447, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 47.87085698, 'TotalPrice': 47.87085698, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4507, 'CustomerID': 102, 'Age': 67, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 52.0, 'OnlineOrderFlag': 'false', 'ProductID': 355, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 52.89227171, 'TotalPrice': 264.4613585, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2575, 'CustomerID': 226, 'Age': 22, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 51.0, 'OnlineOrderFlag': 'false', 'ProductID': 438, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 91.5622217, 'TotalPrice': 183.1244434, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 98, 'CustomerID': 176, 'Age': 69, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 792, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 31.49499298, 'TotalPrice': 157.4749649, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6026, 'CustomerID': 259, 'Age': 29, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 441, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 57.93489684, 'TotalPrice': 289.6744842, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7607, 'CustomerID': 207, 'Age': 70, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 578, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 68.85285369, 'TotalPrice': 275.4114148, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6260, 'CustomerID': 280, 'Age': 21, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 556, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 88.21401935, 'TotalPrice': 88.21401935, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8292, 'CustomerID': 416, 'Age': 43, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 207, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 58.49980383, 'TotalPrice': 233.9992153, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 8812, 'CustomerID': 223, 'Age': 58, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 410, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 85.17983268, 'TotalPrice': 340.7193307, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5683, 'CustomerID': 114, 'Age': 30, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 121, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 65.97852942, 'TotalPrice': 329.8926471, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 750, 'CustomerID': 194, 'Age': 37, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 76.0, 'OnlineOrderFlag': 'false', 'ProductID': 613, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 71.00738963, 'TotalPrice': 142.0147793, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7691, 'CustomerID': 467, 'Age': 20, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 912, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 21.44969646, 'TotalPrice': 85.79878583, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6313, 'CustomerID': 415, 'Age': 50, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 496, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 22.14991463, 'TotalPrice': 110.7495732, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 8069, 'CustomerID': 296, 'Age': 36, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 64.0, 'OnlineOrderFlag': 'false', 'ProductID': 750, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 25.82020682, 'TotalPrice': 103.2808273, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5157, 'CustomerID': 107, 'Age': 58, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 113, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 60.63431182, 'TotalPrice': 60.63431182, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 2221, 'CustomerID': 47, 'Age': 50, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 549, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 51.41284095, 'TotalPrice': 257.0642047, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 686, 'CustomerID': 175, 'Age': 45, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 60.0, 'OnlineOrderFlag': 'false', 'ProductID': 949, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 73.77698347, 'TotalPrice': 368.8849173, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2898, 'CustomerID': 202, 'Age': 53, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 43.0, 'OnlineOrderFlag': 'false', 'ProductID': 742, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 64.38741118, 'TotalPrice': 321.9370559, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5083, 'CustomerID': 138, 'Age': 56, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 925, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 50.27596923, 'TotalPrice': 50.27596923, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 7025, 'CustomerID': 277, 'Age': 44, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 361, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 22.22640908, 'TotalPrice': 22.22640908, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 212, 'CustomerID': 470, 'Age': 40, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 575, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 34.08517449, 'TotalPrice': 34.08517449, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8087, 'CustomerID': 50, 'Age': 26, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 56, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 38.31838746, 'TotalPrice': 76.63677491, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 873, 'CustomerID': 161, 'Age': 59, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 43.0, 'OnlineOrderFlag': 'false', 'ProductID': 936, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 82.92350927, 'TotalPrice': 331.6940371, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 8603, 'CustomerID': 348, 'Age': 28, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 774, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 13.00966601, 'TotalPrice': 26.01933202, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 189, 'CustomerID': 410, 'Age': 51, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 710, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 40.19772976, 'TotalPrice': 80.39545952, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3917, 'CustomerID': 219, 'Age': 53, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 75.0, 'OnlineOrderFlag': 'false', 'ProductID': 16, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 62.83508358, 'TotalPrice': 314.1754179, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3503, 'CustomerID': 449, 'Age': 54, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 287, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 86.49119641, 'TotalPrice': 172.9823928, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7703, 'CustomerID': 474, 'Age': 18, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 14.0, 'OnlineOrderFlag': 'false', 'ProductID': 282, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 57.03235987, 'TotalPrice': 171.0970796, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 144, 'CustomerID': 212, 'Age': 49, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 38, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 94.72507433, 'TotalPrice': 284.175223, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3632, 'CustomerID': 425, 'Age': 64, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 222, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 22.14490121, 'TotalPrice': 44.28980243, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4820, 'CustomerID': 434, 'Age': 43, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 598, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 70.37614983, 'TotalPrice': 351.8807492, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2897, 'CustomerID': 23, 'Age': 65, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 89.0, 'OnlineOrderFlag': 'false', 'ProductID': 280, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 77.77399728, 'TotalPrice': 155.5479946, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6502, 'CustomerID': 93, 'Age': 19, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 578, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 61.3807191, 'TotalPrice': 184.1421573, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1833, 'CustomerID': 225, 'Age': 65, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 434, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 53.77217629, 'TotalPrice': 268.8608814, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 249, 'CustomerID': 160, 'Age': 56, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 532, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 77.6414182, 'TotalPrice': 232.9242546, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3944, 'CustomerID': 297, 'Age': 34, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 848, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 36.63917588, 'TotalPrice': 183.1958794, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1285, 'CustomerID': 39, 'Age': 46, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 689, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 29.39396739, 'TotalPrice': 146.9698369, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6194, 'CustomerID': 323, 'Age': 36, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 8, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 87.32595179, 'TotalPrice': 87.32595179, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7574, 'CustomerID': 117, 'Age': 51, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 898, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 30.85520026, 'TotalPrice': 92.56560079, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1191, 'CustomerID': 454, 'Age': 21, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 123, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 57.7771595, 'TotalPrice': 57.7771595, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 10000, 'CustomerID': 469, 'Age': 39, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 490, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 82.00718261, 'TotalPrice': 328.0287304, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1514, 'CustomerID': 481, 'Age': 49, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 99.0, 'OnlineOrderFlag': 'false', 'ProductID': 291, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 66.15338488, 'TotalPrice': 264.6135395, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4997, 'CustomerID': 243, 'Age': 21, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 247, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 73.56688588, 'TotalPrice': 73.56688588, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4342, 'CustomerID': 52, 'Age': 54, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 666, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 98.9439673, 'TotalPrice': 494.7198365, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 8398, 'CustomerID': 194, 'Age': 57, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 65.0, 'OnlineOrderFlag': 'false', 'ProductID': 908, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 61.27164701, 'TotalPrice': 245.086588, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2964, 'CustomerID': 493, 'Age': 36, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 21.0, 'OnlineOrderFlag': 'false', 'ProductID': 652, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 36.86057661, 'TotalPrice': 36.86057661, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5279, 'CustomerID': 124, 'Age': 30, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 745, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 31.50481283, 'TotalPrice': 126.0192513, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 334, 'CustomerID': 384, 'Age': 41, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 3, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 75.70256547, 'TotalPrice': 151.4051309, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2248, 'CustomerID': 314, 'Age': 31, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 52.0, 'OnlineOrderFlag': 'false', 'ProductID': 487, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 45.74873068, 'TotalPrice': 91.49746136, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4362, 'CustomerID': 25, 'Age': 53, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 42.0, 'OnlineOrderFlag': 'false', 'ProductID': 785, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 72.11056897, 'TotalPrice': 216.3317069, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 6610, 'CustomerID': 288, 'Age': 26, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 470, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 18.48169463, 'TotalPrice': 36.96338925, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 724, 'CustomerID': 140, 'Age': 20, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 58.0, 'OnlineOrderFlag': 'false', 'ProductID': 504, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 61.5140595, 'TotalPrice': 246.056238, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9525, 'CustomerID': 58, 'Age': 64, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 651, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 40.14550819, 'TotalPrice': 160.5820327, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3680, 'CustomerID': 421, 'Age': 51, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 234, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 61.83994168, 'TotalPrice': 61.83994168, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6327, 'CustomerID': 439, 'Age': 56, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 280, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 97.52020983, 'TotalPrice': 390.0808393, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4323, 'CustomerID': 107, 'Age': 70, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 728, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 28.17542957, 'TotalPrice': 28.17542957, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3031, 'CustomerID': 432, 'Age': 57, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 47.0, 'OnlineOrderFlag': 'false', 'ProductID': 456, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 65.30404924, 'TotalPrice': 65.30404924, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3627, 'CustomerID': 205, 'Age': 54, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 797, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 98.13390609, 'TotalPrice': 98.13390609, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4993, 'CustomerID': 213, 'Age': 30, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 838, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 58.248131, 'TotalPrice': 291.240655, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7841, 'CustomerID': 314, 'Age': 38, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 20.0, 'OnlineOrderFlag': 'false', 'ProductID': 314, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 66.56069865, 'TotalPrice': 66.56069865, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 143, 'CustomerID': 378, 'Age': 27, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 182, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 97.69059115, 'TotalPrice': 195.3811823, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7308, 'CustomerID': 419, 'Age': 49, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 320, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 58.52071369, 'TotalPrice': 58.52071369, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8284, 'CustomerID': 96, 'Age': 21, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 415, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 54.8450601, 'TotalPrice': 219.3802404, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6220, 'CustomerID': 32, 'Age': 46, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 94.0, 'OnlineOrderFlag': 'false', 'ProductID': 963, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 25.67476759, 'TotalPrice': 77.02430277, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9640, 'CustomerID': 92, 'Age': 48, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 88.0, 'OnlineOrderFlag': 'false', 'ProductID': 766, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 23.09492778, 'TotalPrice': 69.28478334, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2439, 'CustomerID': 452, 'Age': 48, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 607, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 57.27960973, 'TotalPrice': 57.27960973, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2515, 'CustomerID': 155, 'Age': 56, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 632, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 61.25348913, 'TotalPrice': 183.7604674, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2273, 'CustomerID': 36, 'Age': 27, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 30, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 88.22576848, 'TotalPrice': 264.6773054, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3054, 'CustomerID': 401, 'Age': 68, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 14.0, 'OnlineOrderFlag': 'false', 'ProductID': 517, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 87.34179765, 'TotalPrice': 174.6835953, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4345, 'CustomerID': 91, 'Age': 23, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 11.0, 'OnlineOrderFlag': 'false', 'ProductID': 866, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 41.01489295, 'TotalPrice': 123.0446789, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4846, 'CustomerID': 488, 'Age': 27, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 8.0, 'OnlineOrderFlag': 'false', 'ProductID': 594, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 38.91126998, 'TotalPrice': 194.5563499, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1327, 'CustomerID': 340, 'Age': 64, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 16.0, 'OnlineOrderFlag': 'false', 'ProductID': 680, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 94.57212715, 'TotalPrice': 94.57212715, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 304, 'CustomerID': 293, 'Age': 21, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 25.0, 'OnlineOrderFlag': 'false', 'ProductID': 110, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 83.40571527, 'TotalPrice': 250.2171458, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4561, 'CustomerID': 318, 'Age': 67, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 558, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 16.18375141, 'TotalPrice': 32.36750281, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 603, 'CustomerID': 352, 'Age': 61, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 73.0, 'OnlineOrderFlag': 'false', 'ProductID': 738, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 37.84068706, 'TotalPrice': 189.2034353, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6775, 'CustomerID': 284, 'Age': 18, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 44.0, 'OnlineOrderFlag': 'false', 'ProductID': 608, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 33.04027772, 'TotalPrice': 165.2013886, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1814, 'CustomerID': 479, 'Age': 49, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 77.0, 'OnlineOrderFlag': 'false', 'ProductID': 825, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 52.37963252, 'TotalPrice': 52.37963252, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3839, 'CustomerID': 319, 'Age': 29, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 171, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 98.60114945, 'TotalPrice': 98.60114945, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8608, 'CustomerID': 479, 'Age': 59, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 86.0, 'OnlineOrderFlag': 'false', 'ProductID': 53, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 10.84133022, 'TotalPrice': 21.68266044, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9216, 'CustomerID': 453, 'Age': 69, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 10.0, 'OnlineOrderFlag': 'false', 'ProductID': 210, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 81.65333843, 'TotalPrice': 244.9600153, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3993, 'CustomerID': 16, 'Age': 45, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 63.0, 'OnlineOrderFlag': 'false', 'ProductID': 405, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 73.0740375, 'TotalPrice': 73.0740375, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 2538, 'CustomerID': 309, 'Age': 62, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 80.0, 'OnlineOrderFlag': 'false', 'ProductID': 549, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 56.85023443, 'TotalPrice': 227.4009377, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3691, 'CustomerID': 23, 'Age': 23, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 25.0, 'OnlineOrderFlag': 'false', 'ProductID': 843, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 71.05712979, 'TotalPrice': 284.2285192, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7544, 'CustomerID': 445, 'Age': 69, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 674, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 24.841710720000002, 'TotalPrice': 74.52513216, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7777, 'CustomerID': 28, 'Age': 61, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 943, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 43.33895886, 'TotalPrice': 43.33895886, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3102, 'CustomerID': 163, 'Age': 21, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 635, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 76.21535469, 'TotalPrice': 304.8614187, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2602, 'CustomerID': 169, 'Age': 60, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 309, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 62.24040237, 'TotalPrice': 124.4808047, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4076, 'CustomerID': 252, 'Age': 33, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 62.0, 'OnlineOrderFlag': 'false', 'ProductID': 799, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 40.86532277, 'TotalPrice': 122.5959683, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3400, 'CustomerID': 3, 'Age': 70, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 732, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 99.1192618, 'TotalPrice': 495.596309, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5462, 'CustomerID': 74, 'Age': 58, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 234, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 85.24760535, 'TotalPrice': 170.4952107, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 2033, 'CustomerID': 356, 'Age': 46, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 13, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 76.27142333, 'TotalPrice': 76.27142333, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5093, 'CustomerID': 45, 'Age': 21, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 416, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 66.73404636, 'TotalPrice': 66.73404636, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1790, 'CustomerID': 437, 'Age': 31, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 882, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 32.23755897, 'TotalPrice': 32.23755897, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4304, 'CustomerID': 30, 'Age': 33, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 9.0, 'OnlineOrderFlag': 'false', 'ProductID': 293, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 89.86213793, 'TotalPrice': 179.7242759, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8504, 'CustomerID': 236, 'Age': 43, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 606, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 77.30661439, 'TotalPrice': 386.533072, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3374, 'CustomerID': 484, 'Age': 22, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 249, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 94.70149946, 'TotalPrice': 94.70149946, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4959, 'CustomerID': 418, 'Age': 45, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 69, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 70.74535252, 'TotalPrice': 212.2360576, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7577, 'CustomerID': 276, 'Age': 34, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 990, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 74.83865174, 'TotalPrice': 224.5159552, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6090, 'CustomerID': 266, 'Age': 18, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 612, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 15.65783233, 'TotalPrice': 46.97349699, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1426, 'CustomerID': 499, 'Age': 27, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 15.0, 'OnlineOrderFlag': 'false', 'ProductID': 365, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 62.62020471, 'TotalPrice': 313.1010235, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2488, 'CustomerID': 266, 'Age': 32, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 739, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 36.00404749, 'TotalPrice': 108.0121425, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5428, 'CustomerID': 361, 'Age': 62, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 99.0, 'OnlineOrderFlag': 'false', 'ProductID': 269, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 44.85140838, 'TotalPrice': 44.85140838, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6972, 'CustomerID': 323, 'Age': 42, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 43.0, 'OnlineOrderFlag': 'false', 'ProductID': 775, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 48.45421426, 'TotalPrice': 145.3626428, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2472, 'CustomerID': 239, 'Age': 26, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 287, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 16.74011393, 'TotalPrice': 33.48022785, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6573, 'CustomerID': 61, 'Age': 60, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 702, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 31.22192222, 'TotalPrice': 62.44384444, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6836, 'CustomerID': 167, 'Age': 35, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 589, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 52.48509504, 'TotalPrice': 262.4254752, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 1106, 'CustomerID': 324, 'Age': 23, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 66.0, 'OnlineOrderFlag': 'false', 'ProductID': 774, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 77.15237838, 'TotalPrice': 231.4571351, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4226, 'CustomerID': 120, 'Age': 34, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 76.0, 'OnlineOrderFlag': 'false', 'ProductID': 780, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 64.68061357, 'TotalPrice': 194.0418407, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6564, 'CustomerID': 57, 'Age': 59, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 283, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 11.41664495, 'TotalPrice': 45.6665798, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8947, 'CustomerID': 342, 'Age': 32, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 326, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 27.26465361, 'TotalPrice': 109.0586144, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5667, 'CustomerID': 126, 'Age': 49, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 91.0, 'OnlineOrderFlag': 'false', 'ProductID': 359, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 26.70844279, 'TotalPrice': 80.12532836, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9638, 'CustomerID': 164, 'Age': 45, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 96.0, 'OnlineOrderFlag': 'false', 'ProductID': 486, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 63.931182, 'TotalPrice': 191.793546, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 205, 'CustomerID': 19, 'Age': 29, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 52.0, 'OnlineOrderFlag': 'false', 'ProductID': 188, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 71.24184341, 'TotalPrice': 284.9673737, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2518, 'CustomerID': 99, 'Age': 56, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 911, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 10.40401699, 'TotalPrice': 52.02008493, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4229, 'CustomerID': 437, 'Age': 60, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 153, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 62.18795446, 'TotalPrice': 310.9397723, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 173, 'CustomerID': 300, 'Age': 51, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 467, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 94.26283738, 'TotalPrice': 471.3141869, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1898, 'CustomerID': 304, 'Age': 35, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 96.0, 'OnlineOrderFlag': 'false', 'ProductID': 151, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 84.54227174, 'TotalPrice': 84.54227174, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2030, 'CustomerID': 497, 'Age': 57, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 82, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 77.32844752, 'TotalPrice': 154.656895, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4032, 'CustomerID': 183, 'Age': 57, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 8.0, 'OnlineOrderFlag': 'false', 'ProductID': 545, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 10.65027777, 'TotalPrice': 42.6011111, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 4699, 'CustomerID': 448, 'Age': 36, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 409, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 22.73240812, 'TotalPrice': 22.73240812, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9845, 'CustomerID': 337, 'Age': 66, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 110, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 24.19488933, 'TotalPrice': 72.58466798, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 4631, 'CustomerID': 437, 'Age': 68, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 644, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 63.77199029, 'TotalPrice': 63.77199029, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5986, 'CustomerID': 279, 'Age': 46, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 619, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 94.14632955, 'TotalPrice': 94.14632955, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 3905, 'CustomerID': 427, 'Age': 51, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 426, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 43.7203914, 'TotalPrice': 174.8815656, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6351, 'CustomerID': 459, 'Age': 27, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 530, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 18.35943118, 'TotalPrice': 36.71886236, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9229, 'CustomerID': 357, 'Age': 52, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 755, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 57.0247953, 'TotalPrice': 114.0495906, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5936, 'CustomerID': 108, 'Age': 33, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 96.0, 'OnlineOrderFlag': 'false', 'ProductID': 260, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 24.40817195, 'TotalPrice': 48.81634389, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9471, 'CustomerID': 38, 'Age': 64, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 851, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 39.49374595, 'TotalPrice': 118.4812378, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 3962, 'CustomerID': 310, 'Age': 45, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 990, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 55.88964148, 'TotalPrice': 55.88964148, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2068, 'CustomerID': 37, 'Age': 65, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 86.0, 'OnlineOrderFlag': 'false', 'ProductID': 970, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 86.36506683, 'TotalPrice': 259.0952005, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1560, 'CustomerID': 77, 'Age': 47, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 848, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 23.67759358, 'TotalPrice': 23.67759358, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8294, 'CustomerID': 415, 'Age': 46, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 893, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 47.5611021, 'TotalPrice': 142.6833063, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9313, 'CustomerID': 480, 'Age': 57, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 414, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 65.82569361, 'TotalPrice': 65.82569361, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8692, 'CustomerID': 175, 'Age': 50, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 166, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 81.70307706, 'TotalPrice': 408.5153853, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5738, 'CustomerID': 104, 'Age': 30, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 147, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 37.66648567, 'TotalPrice': 112.999457, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5534, 'CustomerID': 298, 'Age': 57, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 25.0, 'OnlineOrderFlag': 'false', 'ProductID': 4, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 75.91409228, 'TotalPrice': 75.91409228, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 411, 'CustomerID': 146, 'Age': 18, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 812, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 22.99118066, 'TotalPrice': 68.97354199, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4310, 'CustomerID': 304, 'Age': 38, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 85.0, 'OnlineOrderFlag': 'false', 'ProductID': 387, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 27.52589278, 'TotalPrice': 27.52589278, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2522, 'CustomerID': 43, 'Age': 65, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 533, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 17.688353329999998, 'TotalPrice': 70.75341332, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3315, 'CustomerID': 481, 'Age': 64, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 470, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 41.62552829, 'TotalPrice': 124.8765849, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4911, 'CustomerID': 2, 'Age': 33, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 6.0, 'OnlineOrderFlag': 'false', 'ProductID': 367, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 98.20388178, 'TotalPrice': 392.8155271, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5673, 'CustomerID': 37, 'Age': 62, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 694, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 80.44142342, 'TotalPrice': 80.44142342, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 857, 'CustomerID': 345, 'Age': 21, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 664, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 29.55369569, 'TotalPrice': 118.2147828, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8633, 'CustomerID': 273, 'Age': 58, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 58, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 26.16436158, 'TotalPrice': 130.8218079, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9122, 'CustomerID': 142, 'Age': 37, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 994, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 32.84928203, 'TotalPrice': 32.84928203, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3470, 'CustomerID': 483, 'Age': 30, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 59.0, 'OnlineOrderFlag': 'false', 'ProductID': 691, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 96.53748615, 'TotalPrice': 193.0749723, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 9944, 'CustomerID': 248, 'Age': 50, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 827, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 63.35587824, 'TotalPrice': 190.0676347, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 778, 'CustomerID': 176, 'Age': 66, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 387, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 97.22951503, 'TotalPrice': 291.6885451, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1998, 'CustomerID': 6, 'Age': 57, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 963, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 15.06365904, 'TotalPrice': 60.25463616, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8339, 'CustomerID': 141, 'Age': 45, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 13.0, 'OnlineOrderFlag': 'false', 'ProductID': 704, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 78.21611531, 'TotalPrice': 234.6483459, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4502, 'CustomerID': 106, 'Age': 23, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 3.0, 'OnlineOrderFlag': 'false', 'ProductID': 137, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 53.56423064, 'TotalPrice': 267.8211532, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2433, 'CustomerID': 423, 'Age': 57, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 88.0, 'OnlineOrderFlag': 'false', 'ProductID': 309, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 37.48581484, 'TotalPrice': 187.4290742, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1515, 'CustomerID': 245, 'Age': 50, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 16.0, 'OnlineOrderFlag': 'false', 'ProductID': 767, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 95.86350939, 'TotalPrice': 191.7270188, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 6718, 'CustomerID': 73, 'Age': 43, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 365, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 95.73361915, 'TotalPrice': 287.2008575, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4464, 'CustomerID': 3, 'Age': 42, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 307, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 90.48325475, 'TotalPrice': 271.4497643, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6710, 'CustomerID': 308, 'Age': 54, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 506, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 43.6675168, 'TotalPrice': 87.33503359, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2958, 'CustomerID': 24, 'Age': 69, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 53, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 86.81955962, 'TotalPrice': 434.0977981, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3851, 'CustomerID': 474, 'Age': 19, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 46.0, 'OnlineOrderFlag': 'false', 'ProductID': 529, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 73.60772697, 'TotalPrice': 147.2154539, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5213, 'CustomerID': 227, 'Age': 67, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 66.0, 'OnlineOrderFlag': 'false', 'ProductID': 506, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 14.68491247, 'TotalPrice': 73.42456237, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1505, 'CustomerID': 313, 'Age': 25, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 44.0, 'OnlineOrderFlag': 'false', 'ProductID': 632, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 39.28538308, 'TotalPrice': 117.8561492, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 7336, 'CustomerID': 170, 'Age': 37, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 239, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 33.73780154, 'TotalPrice': 168.6890077, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6991, 'CustomerID': 91, 'Age': 25, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 11.0, 'OnlineOrderFlag': 'false', 'ProductID': 335, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 17.15765044, 'TotalPrice': 17.15765044, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7631, 'CustomerID': 200, 'Age': 20, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 244, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 83.62664163, 'TotalPrice': 334.5065665, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2761, 'CustomerID': 476, 'Age': 70, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 103, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 68.92300694, 'TotalPrice': 206.7690208, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3860, 'CustomerID': 237, 'Age': 36, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 63.0, 'OnlineOrderFlag': 'false', 'ProductID': 440, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 43.06259758, 'TotalPrice': 129.1877927, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 97, 'CustomerID': 475, 'Age': 23, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 97.0, 'OnlineOrderFlag': 'false', 'ProductID': 453, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 67.63835772, 'TotalPrice': 338.1917886, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6572, 'CustomerID': 105, 'Age': 52, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 355, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 35.59754884, 'TotalPrice': 71.19509768, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3253, 'CustomerID': 172, 'Age': 70, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 789, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 58.11234647, 'TotalPrice': 174.3370394, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4803, 'CustomerID': 141, 'Age': 43, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 259, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 81.43186725, 'TotalPrice': 407.1593363, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8037, 'CustomerID': 178, 'Age': 41, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 52.0, 'OnlineOrderFlag': 'false', 'ProductID': 170, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 58.5283104, 'TotalPrice': 117.0566208, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9498, 'CustomerID': 124, 'Age': 56, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 551, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 89.7644032, 'TotalPrice': 89.7644032, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5852, 'CustomerID': 275, 'Age': 20, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 568, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 45.62340073, 'TotalPrice': 228.1170036, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 660, 'CustomerID': 274, 'Age': 68, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 3, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 46.11675268, 'TotalPrice': 230.5837634, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 582, 'CustomerID': 400, 'Age': 37, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 532, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 71.07961103, 'TotalPrice': 142.1592221, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9023, 'CustomerID': 259, 'Age': 65, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 696, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 95.51497271, 'TotalPrice': 286.5449181, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 141, 'CustomerID': 401, 'Age': 65, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 401, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 79.0802051, 'TotalPrice': 395.4010255, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 280, 'CustomerID': 265, 'Age': 65, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 427, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 34.36411297, 'TotalPrice': 171.8205649, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3018, 'CustomerID': 72, 'Age': 69, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 748, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 96.635208, 'TotalPrice': 96.635208, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5539, 'CustomerID': 395, 'Age': 18, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 274, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 56.9093413, 'TotalPrice': 284.5467065, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 1021, 'CustomerID': 442, 'Age': 59, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 667, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 18.68302687, 'TotalPrice': 56.0490806, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5523, 'CustomerID': 2, 'Age': 34, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 47.0, 'OnlineOrderFlag': 'false', 'ProductID': 819, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 47.31818358, 'TotalPrice': 236.5909179, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5961, 'CustomerID': 12, 'Age': 50, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 948, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 49.04917566, 'TotalPrice': 49.04917566, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9020, 'CustomerID': 204, 'Age': 32, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 889, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 22.03461009, 'TotalPrice': 88.13844034, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9480, 'CustomerID': 301, 'Age': 58, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 20.0, 'OnlineOrderFlag': 'false', 'ProductID': 709, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 39.89687999, 'TotalPrice': 199.4844, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9348, 'CustomerID': 76, 'Age': 66, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 41.0, 'OnlineOrderFlag': 'false', 'ProductID': 131, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 20.76865752, 'TotalPrice': 103.8432876, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4033, 'CustomerID': 476, 'Age': 26, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 374, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 34.08742099, 'TotalPrice': 170.437105, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8209, 'CustomerID': 299, 'Age': 40, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 89.0, 'OnlineOrderFlag': 'false', 'ProductID': 76, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 42.90725916, 'TotalPrice': 42.90725916, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 518, 'CustomerID': 263, 'Age': 21, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 752, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 35.47492247, 'TotalPrice': 141.8996899, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6454, 'CustomerID': 193, 'Age': 22, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 72.0, 'OnlineOrderFlag': 'false', 'ProductID': 242, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 80.51267131, 'TotalPrice': 80.51267131, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1483, 'CustomerID': 362, 'Age': 20, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 470, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 71.23691126, 'TotalPrice': 71.23691126, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1739, 'CustomerID': 482, 'Age': 59, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 818, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 57.64801177, 'TotalPrice': 115.2960235, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4976, 'CustomerID': 292, 'Age': 52, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 309, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 50.2115117, 'TotalPrice': 200.8460468, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7138, 'CustomerID': 497, 'Age': 42, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 994, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 79.10294551, 'TotalPrice': 158.205891, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7969, 'CustomerID': 336, 'Age': 61, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 122, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 39.81688166, 'TotalPrice': 199.0844083, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 469, 'CustomerID': 35, 'Age': 56, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 89.0, 'OnlineOrderFlag': 'false', 'ProductID': 548, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 30.93990997, 'TotalPrice': 92.81972991, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2911, 'CustomerID': 410, 'Age': 57, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 334, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 19.30792297, 'TotalPrice': 19.30792297, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6390, 'CustomerID': 350, 'Age': 49, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 31.0, 'OnlineOrderFlag': 'false', 'ProductID': 768, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 72.6654528, 'TotalPrice': 72.6654528, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7122, 'CustomerID': 494, 'Age': 48, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 59.0, 'OnlineOrderFlag': 'false', 'ProductID': 174, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 63.60906584, 'TotalPrice': 190.8271975, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9656, 'CustomerID': 415, 'Age': 45, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 204, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 50.57845494, 'TotalPrice': 101.1569099, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8760, 'CustomerID': 476, 'Age': 46, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 52.0, 'OnlineOrderFlag': 'false', 'ProductID': 238, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 49.55415097, 'TotalPrice': 49.55415097, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6151, 'CustomerID': 188, 'Age': 66, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 785, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 26.65563397, 'TotalPrice': 26.65563397, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9057, 'CustomerID': 495, 'Age': 19, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 488, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 79.35698379, 'TotalPrice': 79.35698379, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7202, 'CustomerID': 419, 'Age': 67, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 580, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 63.02695604, 'TotalPrice': 63.02695604, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3743, 'CustomerID': 385, 'Age': 67, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 919, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 21.43433839, 'TotalPrice': 64.30301518, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7946, 'CustomerID': 437, 'Age': 26, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 253, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 87.48809851, 'TotalPrice': 87.48809851, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 787, 'CustomerID': 272, 'Age': 70, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 724, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 42.0844468, 'TotalPrice': 42.0844468, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8491, 'CustomerID': 257, 'Age': 63, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 131, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 71.34776196, 'TotalPrice': 142.6955239, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8240, 'CustomerID': 488, 'Age': 29, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 276, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 39.00174601, 'TotalPrice': 78.00349202, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5626, 'CustomerID': 237, 'Age': 33, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 36.0, 'OnlineOrderFlag': 'false', 'ProductID': 779, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 99.94312426, 'TotalPrice': 399.7724971, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 596, 'CustomerID': 398, 'Age': 68, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 38.0, 'OnlineOrderFlag': 'false', 'ProductID': 766, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 23.57553781, 'TotalPrice': 47.15107562, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3497, 'CustomerID': 471, 'Age': 68, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 49.0, 'OnlineOrderFlag': 'false', 'ProductID': 99, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 39.51315304, 'TotalPrice': 39.51315304, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 2823, 'CustomerID': 474, 'Age': 26, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 274, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 73.11301748, 'TotalPrice': 219.3390524, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5156, 'CustomerID': 351, 'Age': 26, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 87.0, 'OnlineOrderFlag': 'false', 'ProductID': 71, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 68.94077335, 'TotalPrice': 137.8815467, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6600, 'CustomerID': 296, 'Age': 28, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 40.0, 'OnlineOrderFlag': 'false', 'ProductID': 997, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 25.45905289, 'TotalPrice': 76.37715866, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2409, 'CustomerID': 12, 'Age': 68, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 129, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 69.98373954, 'TotalPrice': 209.9512186, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3440, 'CustomerID': 28, 'Age': 28, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 501, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 67.20119267, 'TotalPrice': 336.0059633, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 2984, 'CustomerID': 415, 'Age': 26, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 19.0, 'OnlineOrderFlag': 'false', 'ProductID': 381, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 90.90826028, 'TotalPrice': 272.7247808, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1131, 'CustomerID': 469, 'Age': 31, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 578, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 30.03113044, 'TotalPrice': 90.09339132, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 527, 'CustomerID': 439, 'Age': 60, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 910, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 40.97587825, 'TotalPrice': 122.9276348, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4252, 'CustomerID': 471, 'Age': 25, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 762, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 24.61101913, 'TotalPrice': 98.44407653, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 982, 'CustomerID': 174, 'Age': 38, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 911, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 89.90749303, 'TotalPrice': 269.7224791, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 976, 'CustomerID': 46, 'Age': 65, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 117, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 78.32113633, 'TotalPrice': 156.6422727, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7585, 'CustomerID': 2, 'Age': 65, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 83.0, 'OnlineOrderFlag': 'false', 'ProductID': 504, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 53.5240667, 'TotalPrice': 107.0481334, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7387, 'CustomerID': 319, 'Age': 28, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 5, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 19.73867024, 'TotalPrice': 59.21601072, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2759, 'CustomerID': 199, 'Age': 54, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 72, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 75.52311768, 'TotalPrice': 302.0924707, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5422, 'CustomerID': 14, 'Age': 43, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 33, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 63.47886909, 'TotalPrice': 126.9577382, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 2606, 'CustomerID': 197, 'Age': 60, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 528, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 60.67265372, 'TotalPrice': 121.3453074, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3550, 'CustomerID': 11, 'Age': 37, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 114, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 41.37577285, 'TotalPrice': 82.7515457, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1908, 'CustomerID': 143, 'Age': 69, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 13.0, 'OnlineOrderFlag': 'false', 'ProductID': 223, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 48.66922317, 'TotalPrice': 146.0076695, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 8883, 'CustomerID': 20, 'Age': 31, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 893, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 91.91788805, 'TotalPrice': 183.8357761, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8639, 'CustomerID': 297, 'Age': 56, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 96, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 57.91369948, 'TotalPrice': 115.827399, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4440, 'CustomerID': 177, 'Age': 32, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 58.0, 'OnlineOrderFlag': 'false', 'ProductID': 345, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 55.07126242, 'TotalPrice': 110.1425248, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 936, 'CustomerID': 447, 'Age': 38, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 76.0, 'OnlineOrderFlag': 'false', 'ProductID': 634, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 14.81194176, 'TotalPrice': 74.05970878, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8126, 'CustomerID': 205, 'Age': 65, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 51, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 95.32356757, 'TotalPrice': 190.6471351, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 489, 'CustomerID': 229, 'Age': 21, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 9, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 43.88973481, 'TotalPrice': 43.88973481, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6009, 'CustomerID': 492, 'Age': 55, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 952, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 37.99705693, 'TotalPrice': 113.9911708, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5796, 'CustomerID': 218, 'Age': 66, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 10.0, 'OnlineOrderFlag': 'false', 'ProductID': 974, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 34.29104377, 'TotalPrice': 102.8731313, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3269, 'CustomerID': 405, 'Age': 22, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 7.0, 'OnlineOrderFlag': 'false', 'ProductID': 656, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 18.96216512, 'TotalPrice': 94.81082562, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8637, 'CustomerID': 189, 'Age': 34, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 12.0, 'OnlineOrderFlag': 'false', 'ProductID': 213, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 20.11172717, 'TotalPrice': 80.44690867, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 931, 'CustomerID': 355, 'Age': 55, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 37.0, 'OnlineOrderFlag': 'false', 'ProductID': 868, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 45.02016075, 'TotalPrice': 180.080643, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3955, 'CustomerID': 39, 'Age': 23, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 81.0, 'OnlineOrderFlag': 'false', 'ProductID': 268, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 64.60646553, 'TotalPrice': 258.4258621, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 9486, 'CustomerID': 137, 'Age': 65, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 95.0, 'OnlineOrderFlag': 'false', 'ProductID': 153, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 16.99726965, 'TotalPrice': 67.98907859, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6149, 'CustomerID': 457, 'Age': 39, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 93.0, 'OnlineOrderFlag': 'false', 'ProductID': 499, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 15.33328807, 'TotalPrice': 61.33315226, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5160, 'CustomerID': 407, 'Age': 31, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 71.0, 'OnlineOrderFlag': 'false', 'ProductID': 80, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 56.7112183, 'TotalPrice': 283.5560915, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 571, 'CustomerID': 309, 'Age': 21, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 885, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 21.58893672, 'TotalPrice': 107.9446836, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1816, 'CustomerID': 418, 'Age': 67, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 37.0, 'OnlineOrderFlag': 'false', 'ProductID': 478, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 92.85747809, 'TotalPrice': 185.7149562, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7003, 'CustomerID': 115, 'Age': 51, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 94.0, 'OnlineOrderFlag': 'false', 'ProductID': 286, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 93.28572409, 'TotalPrice': 279.8571723, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7049, 'CustomerID': 140, 'Age': 52, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 330, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 70.17013227, 'TotalPrice': 280.6805291, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5387, 'CustomerID': 373, 'Age': 35, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 3.0, 'OnlineOrderFlag': 'false', 'ProductID': 149, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 84.50044355, 'TotalPrice': 169.0008871, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1042, 'CustomerID': 440, 'Age': 60, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 279, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 60.24651091, 'TotalPrice': 180.7395327, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2811, 'CustomerID': 374, 'Age': 59, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 87.0, 'OnlineOrderFlag': 'false', 'ProductID': 180, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 63.5747152, 'TotalPrice': 127.1494304, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8518, 'CustomerID': 15, 'Age': 55, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 617, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 51.37468556, 'TotalPrice': 102.7493711, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9387, 'CustomerID': 24, 'Age': 65, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 29.0, 'OnlineOrderFlag': 'false', 'ProductID': 540, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 84.86781457, 'TotalPrice': 339.4712583, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 6132, 'CustomerID': 92, 'Age': 35, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 78, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 62.62980718, 'TotalPrice': 313.1490359, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 476, 'CustomerID': 389, 'Age': 29, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 665, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 77.30867616, 'TotalPrice': 154.6173523, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3544, 'CustomerID': 227, 'Age': 59, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 71.0, 'OnlineOrderFlag': 'false', 'ProductID': 251, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 31.91465105, 'TotalPrice': 127.6586042, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7566, 'CustomerID': 323, 'Age': 27, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 996, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 50.26448417, 'TotalPrice': 50.26448417, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2846, 'CustomerID': 100, 'Age': 60, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 44.0, 'OnlineOrderFlag': 'false', 'ProductID': 758, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 21.06092585, 'TotalPrice': 105.3046293, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1324, 'CustomerID': 106, 'Age': 39, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 717, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 53.60683782, 'TotalPrice': 214.4273513, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5759, 'CustomerID': 463, 'Age': 44, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 88.0, 'OnlineOrderFlag': 'false', 'ProductID': 434, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 47.759347, 'TotalPrice': 95.518694, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4773, 'CustomerID': 340, 'Age': 46, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 969, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 97.48663639, 'TotalPrice': 292.4599092, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7771, 'CustomerID': 297, 'Age': 44, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 62.0, 'OnlineOrderFlag': 'false', 'ProductID': 704, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 87.03661985, 'TotalPrice': 174.0732397, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5805, 'CustomerID': 431, 'Age': 32, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 41.0, 'OnlineOrderFlag': 'false', 'ProductID': 962, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 74.04155674, 'TotalPrice': 222.1246702, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7766, 'CustomerID': 328, 'Age': 42, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 82.0, 'OnlineOrderFlag': 'false', 'ProductID': 996, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 70.6672385, 'TotalPrice': 141.334477, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3476, 'CustomerID': 223, 'Age': 32, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 474, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 38.93391429, 'TotalPrice': 38.93391429, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9579, 'CustomerID': 394, 'Age': 70, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 64, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 86.31032724, 'TotalPrice': 86.31032724, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3171, 'CustomerID': 139, 'Age': 57, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 13.0, 'OnlineOrderFlag': 'false', 'ProductID': 730, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 91.220627, 'TotalPrice': 91.220627, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6986, 'CustomerID': 471, 'Age': 68, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 883, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 60.5227427, 'TotalPrice': 302.6137135, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9035, 'CustomerID': 254, 'Age': 30, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 60.0, 'OnlineOrderFlag': 'false', 'ProductID': 914, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 44.47086688, 'TotalPrice': 177.8834675, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 3780, 'CustomerID': 394, 'Age': 30, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 415, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 56.70815467, 'TotalPrice': 170.124464, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5289, 'CustomerID': 87, 'Age': 66, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 723, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 79.36526095, 'TotalPrice': 238.0957829, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 749, 'CustomerID': 67, 'Age': 51, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 38.0, 'OnlineOrderFlag': 'false', 'ProductID': 751, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 88.32840168, 'TotalPrice': 264.985205, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 2235, 'CustomerID': 3, 'Age': 60, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 311, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 65.917004, 'TotalPrice': 197.751012, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7233, 'CustomerID': 442, 'Age': 29, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'true', 'OnlineOrderFlag': 'false', 'ProductID': 962, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 74.42035832, 'TotalPrice': 223.2610749, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6763, 'CustomerID': 348, 'Age': 66, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 35.0, 'OnlineOrderFlag': 'false', 'ProductID': 112, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 49.51599152, 'TotalPrice': 247.5799576, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1313, 'CustomerID': 401, 'Age': 22, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 413, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 90.44848531, 'TotalPrice': 271.3454559, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1522, 'CustomerID': 406, 'Age': 41, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 211, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 87.6417402, 'TotalPrice': 175.2834804, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8311, 'CustomerID': 124, 'Age': 21, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 65.0, 'OnlineOrderFlag': 'false', 'ProductID': 25, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 58.11989598, 'TotalPrice': 116.239792, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 1748, 'CustomerID': 142, 'Age': 55, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 97.0, 'OnlineOrderFlag': 'false', 'ProductID': 413, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 25.36265502, 'TotalPrice': 76.08796507, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 9209, 'CustomerID': 287, 'Age': 59, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 35.0, 'OnlineOrderFlag': 'false', 'ProductID': 852, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 46.3662909, 'TotalPrice': 92.7325818, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6237, 'CustomerID': 233, 'Age': 42, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 35.0, 'OnlineOrderFlag': 'false', 'ProductID': 941, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 87.37246255, 'TotalPrice': 262.1173876, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4549, 'CustomerID': 312, 'Age': 50, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 896, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 22.77102063, 'TotalPrice': 91.0840825, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5106, 'CustomerID': 58, 'Age': 54, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 367, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 54.47719398, 'TotalPrice': 217.9087759, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8198, 'CustomerID': 172, 'Age': 27, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 27.0, 'OnlineOrderFlag': 'false', 'ProductID': 333, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 20.79924411, 'TotalPrice': 41.59848823, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1500, 'CustomerID': 474, 'Age': 64, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 822, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 12.19012617, 'TotalPrice': 36.57037852, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8494, 'CustomerID': 273, 'Age': 40, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 59, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 14.38133945, 'TotalPrice': 43.14401836, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 360, 'CustomerID': 279, 'Age': 56, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 51, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 33.81855142, 'TotalPrice': 101.4556543, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 5273, 'CustomerID': 429, 'Age': 47, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 35.0, 'OnlineOrderFlag': 'false', 'ProductID': 711, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 55.02491791, 'TotalPrice': 55.02491791, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 2120, 'CustomerID': 353, 'Age': 38, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 151, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 99.3974161, 'TotalPrice': 198.7948322, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1713, 'CustomerID': 87, 'Age': 44, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 644, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 15.07903284, 'TotalPrice': 60.31613136, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1964, 'CustomerID': 8, 'Age': 40, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 27.0, 'OnlineOrderFlag': 'false', 'ProductID': 108, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 53.04673333, 'TotalPrice': 106.0934667, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1193, 'CustomerID': 438, 'Age': 45, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 718, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 51.26122118, 'TotalPrice': 102.5224424, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 7869, 'CustomerID': 485, 'Age': 51, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 235, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 44.65569154, 'TotalPrice': 133.9670746, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9883, 'CustomerID': 400, 'Age': 49, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 37.0, 'OnlineOrderFlag': 'false', 'ProductID': 836, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 31.76072291, 'TotalPrice': 127.0428916, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 3986, 'CustomerID': 19, 'Age': 61, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 35.0, 'OnlineOrderFlag': 'false', 'ProductID': 545, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 61.28298075, 'TotalPrice': 183.8489422, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2573, 'CustomerID': 496, 'Age': 31, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 540, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 29.622475389999998, 'TotalPrice': 29.622475389999998, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 1525, 'CustomerID': 105, 'Age': 33, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 72, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 16.54935556, 'TotalPrice': 33.09871111, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5658, 'CustomerID': 429, 'Age': 18, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 639, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 31.1058029, 'TotalPrice': 93.3174087, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3738, 'CustomerID': 140, 'Age': 39, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 335, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 25.49749146, 'TotalPrice': 127.4874573, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8094, 'CustomerID': 306, 'Age': 38, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 6.0, 'OnlineOrderFlag': 'false', 'ProductID': 94, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 26.6061033, 'TotalPrice': 133.0305165, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3058, 'CustomerID': 70, 'Age': 53, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 24, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 52.78598128, 'TotalPrice': 263.9299064, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8202, 'CustomerID': 257, 'Age': 62, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 460, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 74.80589115, 'TotalPrice': 299.2235646, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4877, 'CustomerID': 484, 'Age': 58, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 392, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 42.3820352, 'TotalPrice': 127.1461056, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8046, 'CustomerID': 480, 'Age': 22, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 950, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 71.16988135, 'TotalPrice': 284.6795254, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1622, 'CustomerID': 376, 'Age': 65, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 16.0, 'OnlineOrderFlag': 'false', 'ProductID': 913, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 94.82084332, 'TotalPrice': 284.4625299, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 704, 'CustomerID': 391, 'Age': 31, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 609, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 48.05404702, 'TotalPrice': 144.1621411, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6392, 'CustomerID': 378, 'Age': 55, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 922, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 60.75111443, 'TotalPrice': 60.75111443, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6052, 'CustomerID': 364, 'Age': 62, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 30.0, 'OnlineOrderFlag': 'false', 'ProductID': 307, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 48.34479053, 'TotalPrice': 193.3791621, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 9786, 'CustomerID': 121, 'Age': 38, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 122, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 35.12706422, 'TotalPrice': 35.12706422, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1039, 'CustomerID': 58, 'Age': 25, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 325, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 19.44295011, 'TotalPrice': 77.77180043, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 905, 'CustomerID': 91, 'Age': 27, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 62.0, 'OnlineOrderFlag': 'false', 'ProductID': 974, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 39.06029921, 'TotalPrice': 156.2411968, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8000, 'CustomerID': 310, 'Age': 38, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 333, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 43.73213349, 'TotalPrice': 87.46426697, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1023, 'CustomerID': 344, 'Age': 64, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 379, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 39.35308233, 'TotalPrice': 78.70616466, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2881, 'CustomerID': 427, 'Age': 37, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 632, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 96.15868589, 'TotalPrice': 192.3173718, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4328, 'CustomerID': 472, 'Age': 56, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 490, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 36.86334316, 'TotalPrice': 184.3167158, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1675, 'CustomerID': 82, 'Age': 54, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 85.0, 'OnlineOrderFlag': 'false', 'ProductID': 731, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 68.86073969, 'TotalPrice': 275.4429588, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1130, 'CustomerID': 204, 'Age': 55, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 670, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 25.85929299, 'TotalPrice': 129.2964649, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4906, 'CustomerID': 264, 'Age': 61, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 36.0, 'OnlineOrderFlag': 'false', 'ProductID': 103, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 78.59394341, 'TotalPrice': 314.3757736, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9945, 'CustomerID': 21, 'Age': 23, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 302, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 34.42247298, 'TotalPrice': 68.84494596, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 310, 'CustomerID': 418, 'Age': 46, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 7.0, 'OnlineOrderFlag': 'false', 'ProductID': 389, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 80.63891796, 'TotalPrice': 161.2778359, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4802, 'CustomerID': 494, 'Age': 60, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 362, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 87.44859633, 'TotalPrice': 262.345789, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7572, 'CustomerID': 113, 'Age': 21, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 427, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 97.31854654, 'TotalPrice': 389.2741862, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2111, 'CustomerID': 190, 'Age': 58, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 76.0, 'OnlineOrderFlag': 'false', 'ProductID': 974, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 40.54815074, 'TotalPrice': 162.1926029, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 2117, 'CustomerID': 221, 'Age': 61, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 864, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 62.8047501, 'TotalPrice': 125.6095002, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 3942, 'CustomerID': 55, 'Age': 20, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 133, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 82.78761941, 'TotalPrice': 82.78761941, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4703, 'CustomerID': 83, 'Age': 48, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 53.0, 'OnlineOrderFlag': 'false', 'ProductID': 698, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 99.11113356, 'TotalPrice': 495.5556678, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9775, 'CustomerID': 424, 'Age': 58, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 56.0, 'OnlineOrderFlag': 'false', 'ProductID': 917, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 93.07321952, 'TotalPrice': 93.07321952, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8624, 'CustomerID': 276, 'Age': 50, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 77.0, 'OnlineOrderFlag': 'false', 'ProductID': 128, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 81.13226667, 'TotalPrice': 324.5290667, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4588, 'CustomerID': 292, 'Age': 43, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 58.0, 'OnlineOrderFlag': 'false', 'ProductID': 605, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 98.60415842, 'TotalPrice': 197.2083168, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4497, 'CustomerID': 5, 'Age': 57, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 91.0, 'OnlineOrderFlag': 'false', 'ProductID': 505, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 11.49550206, 'TotalPrice': 11.49550206, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 339, 'CustomerID': 192, 'Age': 63, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 696, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 69.6595082, 'TotalPrice': 208.9785246, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7410, 'CustomerID': 70, 'Age': 62, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 464, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 48.8808314, 'TotalPrice': 97.76166281, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5148, 'CustomerID': 112, 'Age': 27, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 59.0, 'OnlineOrderFlag': 'false', 'ProductID': 705, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 98.67178811, 'TotalPrice': 296.0153643, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1989, 'CustomerID': 289, 'Age': 57, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 321, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 75.04983555, 'TotalPrice': 75.04983555, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3046, 'CustomerID': 7, 'Age': 42, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 51.0, 'OnlineOrderFlag': 'false', 'ProductID': 753, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 92.49730931, 'TotalPrice': 369.9892373, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2268, 'CustomerID': 23, 'Age': 48, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 5.0, 'OnlineOrderFlag': 'false', 'ProductID': 93, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 39.69397965, 'TotalPrice': 158.7759186, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6796, 'CustomerID': 130, 'Age': 60, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 672, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 99.23108888, 'TotalPrice': 496.1554444, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8395, 'CustomerID': 116, 'Age': 59, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 34.0, 'OnlineOrderFlag': 'false', 'ProductID': 682, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 92.83047741, 'TotalPrice': 185.6609548, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2818, 'CustomerID': 494, 'Age': 53, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 645, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 22.39441059, 'TotalPrice': 111.9720529, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7943, 'CustomerID': 20, 'Age': 61, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 10.0, 'OnlineOrderFlag': 'false', 'ProductID': 146, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 25.62112374, 'TotalPrice': 76.86337123, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7402, 'CustomerID': 166, 'Age': 52, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 70.0, 'OnlineOrderFlag': 'false', 'ProductID': 49, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 34.05811468, 'TotalPrice': 34.05811468, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 809, 'CustomerID': 122, 'Age': 39, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 848, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 52.05936637, 'TotalPrice': 260.2968318, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 830, 'CustomerID': 421, 'Age': 29, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 932, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 35.1365325, 'TotalPrice': 35.1365325, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4615, 'CustomerID': 204, 'Age': 40, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 363, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 51.75282945, 'TotalPrice': 258.7641473, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 922, 'CustomerID': 239, 'Age': 38, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 30.0, 'OnlineOrderFlag': 'false', 'ProductID': 325, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 98.45899249, 'TotalPrice': 295.3769775, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 381, 'CustomerID': 265, 'Age': 70, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 593, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 39.1402898, 'TotalPrice': 195.701449, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 158, 'CustomerID': 4, 'Age': 42, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 195, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 49.98076168, 'TotalPrice': 49.98076168, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7843, 'CustomerID': 430, 'Age': 54, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 46.0, 'OnlineOrderFlag': 'false', 'ProductID': 459, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 84.05523007, 'TotalPrice': 252.1656902, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8815, 'CustomerID': 319, 'Age': 70, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 102, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 70.63698784, 'TotalPrice': 353.1849392, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6515, 'CustomerID': 481, 'Age': 61, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 19.0, 'OnlineOrderFlag': 'false', 'ProductID': 897, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 81.96102399, 'TotalPrice': 327.8440959, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2773, 'CustomerID': 219, 'Age': 59, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 418, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 73.65580078, 'TotalPrice': 368.2790039, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1965, 'CustomerID': 376, 'Age': 55, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 73, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 63.18515196, 'TotalPrice': 252.7406078, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7900, 'CustomerID': 175, 'Age': 33, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 69, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 72.30039257, 'TotalPrice': 72.30039257, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 5005, 'CustomerID': 377, 'Age': 49, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 542, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 15.4079403, 'TotalPrice': 77.03970152, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4487, 'CustomerID': 144, 'Age': 46, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 407, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 82.61833364, 'TotalPrice': 82.61833364, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6464, 'CustomerID': 71, 'Age': 31, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 235, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 49.32381248, 'TotalPrice': 147.9714374, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9094, 'CustomerID': 8, 'Age': 18, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 653, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 71.99440809, 'TotalPrice': 359.9720405, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5522, 'CustomerID': 170, 'Age': 62, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 73.0, 'OnlineOrderFlag': 'false', 'ProductID': 808, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 37.59713251, 'TotalPrice': 112.7913975, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7131, 'CustomerID': 354, 'Age': 45, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 137, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 39.22687543, 'TotalPrice': 78.45375087, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 1987, 'CustomerID': 197, 'Age': 26, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 77.0, 'OnlineOrderFlag': 'false', 'ProductID': 779, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 49.03269895, 'TotalPrice': 245.1634948, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1753, 'CustomerID': 257, 'Age': 21, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 784, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 75.96276722, 'TotalPrice': 303.8510689, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2691, 'CustomerID': 59, 'Age': 20, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 53.0, 'OnlineOrderFlag': 'false', 'ProductID': 909, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 39.93293239, 'TotalPrice': 119.7987972, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2557, 'CustomerID': 85, 'Age': 46, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 77.0, 'OnlineOrderFlag': 'false', 'ProductID': 382, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 58.04575975, 'TotalPrice': 116.0915195, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3730, 'CustomerID': 258, 'Age': 25, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 308, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 38.86874106, 'TotalPrice': 38.86874106, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4228, 'CustomerID': 343, 'Age': 64, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 107, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 99.99657874, 'TotalPrice': 499.9828937, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7827, 'CustomerID': 322, 'Age': 66, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 972, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 47.24105415, 'TotalPrice': 188.9642166, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7223, 'CustomerID': 388, 'Age': 66, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 947, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 17.7481849, 'TotalPrice': 53.24455471, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4355, 'CustomerID': 73, 'Age': 43, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 487, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 77.44103062, 'TotalPrice': 154.8820612, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 752, 'CustomerID': 430, 'Age': 62, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 733, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 82.59837191, 'TotalPrice': 330.3934876, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 34, 'CustomerID': 215, 'Age': 24, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 73.0, 'OnlineOrderFlag': 'false', 'ProductID': 427, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 66.24160918, 'TotalPrice': 331.2080459, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3669, 'CustomerID': 170, 'Age': 43, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 71, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 17.61940744, 'TotalPrice': 88.09703718, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1579, 'CustomerID': 49, 'Age': 35, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 329, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 14.84215739, 'TotalPrice': 59.36862955, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 2517, 'CustomerID': 479, 'Age': 35, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 72.0, 'OnlineOrderFlag': 'false', 'ProductID': 654, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 94.14550359, 'TotalPrice': 376.5820143, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9061, 'CustomerID': 159, 'Age': 26, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 983, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 42.69712389, 'TotalPrice': 128.0913717, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2232, 'CustomerID': 430, 'Age': 22, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 582, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 66.47331122, 'TotalPrice': 332.3665561, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4826, 'CustomerID': 346, 'Age': 23, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 82, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 73.37964775, 'TotalPrice': 220.1389432, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 9601, 'CustomerID': 79, 'Age': 40, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 51.0, 'OnlineOrderFlag': 'false', 'ProductID': 375, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 74.36834906, 'TotalPrice': 297.4733962, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1904, 'CustomerID': 156, 'Age': 70, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 95.0, 'OnlineOrderFlag': 'false', 'ProductID': 86, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 65.06946074, 'TotalPrice': 325.3473037, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4285, 'CustomerID': 70, 'Age': 57, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 226, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 13.34910683, 'TotalPrice': 13.34910683, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7323, 'CustomerID': 48, 'Age': 44, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 54.0, 'OnlineOrderFlag': 'false', 'ProductID': 725, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 79.77788504, 'TotalPrice': 159.5557701, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2130, 'CustomerID': 351, 'Age': 29, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 244, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 69.60786493, 'TotalPrice': 69.60786493, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8809, 'CustomerID': 481, 'Age': 27, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 99.0, 'OnlineOrderFlag': 'false', 'ProductID': 527, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 91.28257421, 'TotalPrice': 365.1302968, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 1925, 'CustomerID': 306, 'Age': 27, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 86.0, 'OnlineOrderFlag': 'false', 'ProductID': 436, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 50.63771413, 'TotalPrice': 50.63771413, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8036, 'CustomerID': 373, 'Age': 27, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 13.0, 'OnlineOrderFlag': 'false', 'ProductID': 56, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 13.07276627, 'TotalPrice': 39.2182988, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7348, 'CustomerID': 212, 'Age': 41, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 820, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 51.42887305, 'TotalPrice': 257.1443653, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8186, 'CustomerID': 287, 'Age': 38, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 345, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 91.433175, 'TotalPrice': 182.86635, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 3790, 'CustomerID': 386, 'Age': 57, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 66.0, 'OnlineOrderFlag': 'false', 'ProductID': 437, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 23.52652247, 'TotalPrice': 117.6326123, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 9443, 'CustomerID': 382, 'Age': 19, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 969, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 79.61270823, 'TotalPrice': 159.2254165, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6056, 'CustomerID': 366, 'Age': 22, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'true', 'OnlineOrderFlag': 'false', 'ProductID': 540, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 99.94181139, 'TotalPrice': 399.7672456, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2955, 'CustomerID': 124, 'Age': 32, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 500, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 44.6241035, 'TotalPrice': 133.8723105, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4555, 'CustomerID': 441, 'Age': 45, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 279, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 18.08664663, 'TotalPrice': 36.17329325, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9677, 'CustomerID': 178, 'Age': 63, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 855, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 10.87320721, 'TotalPrice': 10.87320721, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1298, 'CustomerID': 34, 'Age': 64, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 105, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 68.06364038, 'TotalPrice': 204.1909211, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8406, 'CustomerID': 200, 'Age': 46, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 270, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 83.65371749, 'TotalPrice': 418.2685874, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 943, 'CustomerID': 249, 'Age': 48, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 449, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 77.68160962, 'TotalPrice': 310.7264385, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9212, 'CustomerID': 278, 'Age': 40, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 642, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 50.1572918, 'TotalPrice': 200.6291672, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8004, 'CustomerID': 349, 'Age': 32, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 841, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 45.94145091, 'TotalPrice': 137.8243527, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 7451, 'CustomerID': 436, 'Age': 34, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 143, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 57.42564041, 'TotalPrice': 57.42564041, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5007, 'CustomerID': 95, 'Age': 46, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 743, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 43.79925717, 'TotalPrice': 218.9962858, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8044, 'CustomerID': 119, 'Age': 70, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 272, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 71.12018718, 'TotalPrice': 71.12018718, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 3514, 'CustomerID': 293, 'Age': 62, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 730, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 86.44137655, 'TotalPrice': 172.8827531, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 4853, 'CustomerID': 380, 'Age': 33, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 726, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 39.56614115, 'TotalPrice': 118.6984234, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2396, 'CustomerID': 405, 'Age': 31, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 221, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 49.3419718, 'TotalPrice': 246.709859, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9050, 'CustomerID': 184, 'Age': 62, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 18, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 46.08484197, 'TotalPrice': 230.4242099, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7809, 'CustomerID': 82, 'Age': 57, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 918, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 56.85076543, 'TotalPrice': 284.2538272, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 1726, 'CustomerID': 52, 'Age': 21, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 53, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 79.75592676, 'TotalPrice': 239.2677803, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1743, 'CustomerID': 336, 'Age': 21, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 408, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 49.46354768, 'TotalPrice': 49.46354768, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7536, 'CustomerID': 188, 'Age': 61, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 43, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 48.44041508, 'TotalPrice': 145.3212452, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3749, 'CustomerID': 382, 'Age': 20, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 598, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 74.77754079, 'TotalPrice': 224.3326224, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1390, 'CustomerID': 30, 'Age': 29, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 51.0, 'OnlineOrderFlag': 'false', 'ProductID': 572, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 98.53927525, 'TotalPrice': 197.0785505, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7919, 'CustomerID': 30, 'Age': 57, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'true', 'OnlineOrderFlag': 'false', 'ProductID': 451, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 95.38493881, 'TotalPrice': 286.1548164, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2978, 'CustomerID': 397, 'Age': 36, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 70.0, 'OnlineOrderFlag': 'false', 'ProductID': 533, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 24.17768055, 'TotalPrice': 72.53304165, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 9359, 'CustomerID': 83, 'Age': 69, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 95.0, 'OnlineOrderFlag': 'false', 'ProductID': 778, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 79.11236046, 'TotalPrice': 158.2247209, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4979, 'CustomerID': 415, 'Age': 27, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 10.0, 'OnlineOrderFlag': 'false', 'ProductID': 495, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 54.97261336, 'TotalPrice': 54.97261336, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 4546, 'CustomerID': 389, 'Age': 33, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 31.0, 'OnlineOrderFlag': 'false', 'ProductID': 538, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 10.98936479, 'TotalPrice': 54.94682396, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 8086, 'CustomerID': 176, 'Age': 22, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 577, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 93.29032309, 'TotalPrice': 93.29032309, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6185, 'CustomerID': 7, 'Age': 20, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 91.0, 'OnlineOrderFlag': 'false', 'ProductID': 527, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 94.25501181, 'TotalPrice': 377.0200473, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6949, 'CustomerID': 144, 'Age': 25, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 267, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 29.74574719, 'TotalPrice': 118.9829888, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3061, 'CustomerID': 12, 'Age': 38, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 696, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 22.97553755, 'TotalPrice': 45.9510751, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7908, 'CustomerID': 482, 'Age': 56, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 11.0, 'OnlineOrderFlag': 'false', 'ProductID': 894, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 25.31216637, 'TotalPrice': 50.62433273, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7704, 'CustomerID': 181, 'Age': 34, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 899, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 59.79315056, 'TotalPrice': 119.5863011, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4324, 'CustomerID': 209, 'Age': 47, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 144, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 48.64640535, 'TotalPrice': 97.2928107, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2028, 'CustomerID': 171, 'Age': 43, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 78.0, 'OnlineOrderFlag': 'false', 'ProductID': 345, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 51.45484525, 'TotalPrice': 205.819381, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9643, 'CustomerID': 373, 'Age': 39, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 435, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 37.0809893, 'TotalPrice': 111.2429679, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9985, 'CustomerID': 151, 'Age': 33, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 699, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 28.37567326, 'TotalPrice': 85.12701977, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5364, 'CustomerID': 482, 'Age': 69, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 654, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 48.72907528, 'TotalPrice': 97.45815056, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8089, 'CustomerID': 357, 'Age': 51, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 470, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 61.18534926, 'TotalPrice': 244.741397, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7558, 'CustomerID': 121, 'Age': 57, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 785, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 51.19169057, 'TotalPrice': 153.5750717, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4841, 'CustomerID': 53, 'Age': 40, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 161, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 20.30137584, 'TotalPrice': 81.20550337, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9622, 'CustomerID': 485, 'Age': 50, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 307, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 94.02083551, 'TotalPrice': 94.02083551, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8470, 'CustomerID': 15, 'Age': 23, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 442, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 92.15726432, 'TotalPrice': 368.6290573, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8802, 'CustomerID': 273, 'Age': 50, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 14.0, 'OnlineOrderFlag': 'false', 'ProductID': 763, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 22.00761533, 'TotalPrice': 88.03046131, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5471, 'CustomerID': 338, 'Age': 25, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 189, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 76.33640794, 'TotalPrice': 152.6728159, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 5268, 'CustomerID': 34, 'Age': 20, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 7.0, 'OnlineOrderFlag': 'false', 'ProductID': 897, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 11.51569925, 'TotalPrice': 34.54709776, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1630, 'CustomerID': 314, 'Age': 54, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 477, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 81.46439297, 'TotalPrice': 162.9287859, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9548, 'CustomerID': 193, 'Age': 33, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 944, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 19.30830421, 'TotalPrice': 19.30830421, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 870, 'CustomerID': 360, 'Age': 57, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 419, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 99.81244879, 'TotalPrice': 299.4373464, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9262, 'CustomerID': 108, 'Age': 63, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 528, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 53.77143638, 'TotalPrice': 161.3143091, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 368, 'CustomerID': 28, 'Age': 60, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 37.0, 'OnlineOrderFlag': 'false', 'ProductID': 89, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 96.74960336, 'TotalPrice': 290.2488101, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6680, 'CustomerID': 298, 'Age': 25, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 313, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 18.20586011, 'TotalPrice': 91.02930055, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 556, 'CustomerID': 55, 'Age': 34, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 29.0, 'OnlineOrderFlag': 'false', 'ProductID': 992, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 23.57269225, 'TotalPrice': 94.29076899, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6815, 'CustomerID': 54, 'Age': 64, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 134, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 95.66318794, 'TotalPrice': 478.3159397, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 924, 'CustomerID': 278, 'Age': 40, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 10.0, 'OnlineOrderFlag': 'false', 'ProductID': 287, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 21.42146324, 'TotalPrice': 21.42146324, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6368, 'CustomerID': 98, 'Age': 32, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 911, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 50.50321237, 'TotalPrice': 50.50321237, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 8178, 'CustomerID': 416, 'Age': 23, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 755, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 21.03162377, 'TotalPrice': 105.1581189, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8645, 'CustomerID': 281, 'Age': 20, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 552, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 73.75710469, 'TotalPrice': 221.2713141, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7548, 'CustomerID': 133, 'Age': 30, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 882, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 49.48066882, 'TotalPrice': 197.9226753, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6938, 'CustomerID': 134, 'Age': 49, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 876, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 76.38503269, 'TotalPrice': 152.7700654, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9806, 'CustomerID': 262, 'Age': 24, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 74.0, 'OnlineOrderFlag': 'false', 'ProductID': 746, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 82.1192511, 'TotalPrice': 328.4770044, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7831, 'CustomerID': 46, 'Age': 54, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 60, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 85.74298048, 'TotalPrice': 257.2289414, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3020, 'CustomerID': 271, 'Age': 62, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 116, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 54.55603027, 'TotalPrice': 218.2241211, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5648, 'CustomerID': 410, 'Age': 55, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 51.0, 'OnlineOrderFlag': 'false', 'ProductID': 424, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 42.78047021, 'TotalPrice': 213.902351, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8891, 'CustomerID': 126, 'Age': 40, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 485, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 53.08627584, 'TotalPrice': 106.1725517, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6497, 'CustomerID': 151, 'Age': 62, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 39.0, 'OnlineOrderFlag': 'false', 'ProductID': 52, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 91.71744486, 'TotalPrice': 366.8697794, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3297, 'CustomerID': 165, 'Age': 59, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 82, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 48.26159226, 'TotalPrice': 96.52318452, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8334, 'CustomerID': 256, 'Age': 25, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 380, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 87.04436271, 'TotalPrice': 174.0887254, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1740, 'CustomerID': 362, 'Age': 27, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 83.0, 'OnlineOrderFlag': 'false', 'ProductID': 951, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 68.18187323, 'TotalPrice': 272.7274929, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8333, 'CustomerID': 226, 'Age': 52, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 11.0, 'OnlineOrderFlag': 'false', 'ProductID': 320, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 95.05296112, 'TotalPrice': 285.1588834, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 538, 'CustomerID': 408, 'Age': 69, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 499, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 13.17199455, 'TotalPrice': 65.85997275, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6167, 'CustomerID': 492, 'Age': 30, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 50.0, 'OnlineOrderFlag': 'false', 'ProductID': 586, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 74.42126741, 'TotalPrice': 372.106337, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4397, 'CustomerID': 353, 'Age': 28, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 89.0, 'OnlineOrderFlag': 'false', 'ProductID': 991, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 10.90946724, 'TotalPrice': 43.63786897, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5478, 'CustomerID': 87, 'Age': 41, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 99.0, 'OnlineOrderFlag': 'false', 'ProductID': 521, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 81.48934347, 'TotalPrice': 81.48934347, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8557, 'CustomerID': 202, 'Age': 24, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 201, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 34.82080752, 'TotalPrice': 139.2832301, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 871, 'CustomerID': 474, 'Age': 60, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 944, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 95.95720501, 'TotalPrice': 95.95720501, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4847, 'CustomerID': 36, 'Age': 49, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 748, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 76.89276563, 'TotalPrice': 384.4638282, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5262, 'CustomerID': 19, 'Age': 32, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 22, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 70.73123457, 'TotalPrice': 353.6561728, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 7589, 'CustomerID': 17, 'Age': 29, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 170, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 30.61450841, 'TotalPrice': 122.4580336, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 325, 'CustomerID': 136, 'Age': 47, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 464, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 88.37031641, 'TotalPrice': 176.7406328, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1134, 'CustomerID': 45, 'Age': 58, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 689, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 80.57122517, 'TotalPrice': 80.57122517, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9345, 'CustomerID': 307, 'Age': 68, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 2.0, 'OnlineOrderFlag': 'false', 'ProductID': 206, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 18.2598869, 'TotalPrice': 36.51977381, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9334, 'CustomerID': 294, 'Age': 19, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 523, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 38.24370056, 'TotalPrice': 38.24370056, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7983, 'CustomerID': 18, 'Age': 22, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 66.0, 'OnlineOrderFlag': 'false', 'ProductID': 88, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 68.01761216, 'TotalPrice': 68.01761216, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5962, 'CustomerID': 193, 'Age': 45, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 997, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 10.11408059, 'TotalPrice': 10.11408059, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 947, 'CustomerID': 93, 'Age': 49, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 701, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 99.10120078, 'TotalPrice': 99.10120078, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 7959, 'CustomerID': 98, 'Age': 23, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 481, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 79.36605388, 'TotalPrice': 238.0981616, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7352, 'CustomerID': 287, 'Age': 70, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 181, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 75.17669999, 'TotalPrice': 375.8834999, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6801, 'CustomerID': 449, 'Age': 51, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 11.0, 'OnlineOrderFlag': 'false', 'ProductID': 665, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 61.76205578, 'TotalPrice': 308.8102789, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6935, 'CustomerID': 218, 'Age': 22, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 652, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 76.2229007, 'TotalPrice': 228.6687021, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 615, 'CustomerID': 154, 'Age': 27, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 586, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 15.3099181, 'TotalPrice': 45.9297543, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7779, 'CustomerID': 47, 'Age': 55, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 79, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 58.22834999, 'TotalPrice': 232.9134, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 8593, 'CustomerID': 472, 'Age': 25, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 813, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 78.072563, 'TotalPrice': 156.145126, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6428, 'CustomerID': 176, 'Age': 51, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 626, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 78.97447608, 'TotalPrice': 78.97447608, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5855, 'CustomerID': 254, 'Age': 41, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 90.0, 'OnlineOrderFlag': 'false', 'ProductID': 299, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 16.5372639, 'TotalPrice': 82.68631952, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3825, 'CustomerID': 480, 'Age': 58, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 126, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 16.90331188, 'TotalPrice': 84.51655939, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1818, 'CustomerID': 92, 'Age': 29, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 22.0, 'OnlineOrderFlag': 'false', 'ProductID': 157, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 64.01234554, 'TotalPrice': 64.01234554, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2682, 'CustomerID': 44, 'Age': 28, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 626, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 82.01109621, 'TotalPrice': 82.01109621, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8141, 'CustomerID': 362, 'Age': 33, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 784, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 73.71476466, 'TotalPrice': 221.144294, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6592, 'CustomerID': 69, 'Age': 26, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 828, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 53.79937072, 'TotalPrice': 268.9968536, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3777, 'CustomerID': 64, 'Age': 21, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 88, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 36.59180634, 'TotalPrice': 109.775419, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 9621, 'CustomerID': 64, 'Age': 32, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 402, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 24.20500645, 'TotalPrice': 24.20500645, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8071, 'CustomerID': 182, 'Age': 20, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 185, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 15.16292901, 'TotalPrice': 60.65171605, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5538, 'CustomerID': 393, 'Age': 32, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 59.0, 'OnlineOrderFlag': 'false', 'ProductID': 253, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 70.85257973, 'TotalPrice': 212.5577392, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 2888, 'CustomerID': 246, 'Age': 27, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 561, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 32.99422628, 'TotalPrice': 131.9769051, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8382, 'CustomerID': 27, 'Age': 23, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 31.0, 'OnlineOrderFlag': 'false', 'ProductID': 360, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 24.37658651, 'TotalPrice': 121.8829326, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6161, 'CustomerID': 104, 'Age': 49, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 33.0, 'OnlineOrderFlag': 'false', 'ProductID': 40, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 75.36618875, 'TotalPrice': 376.8309437, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4855, 'CustomerID': 250, 'Age': 70, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 81, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 21.73929981, 'TotalPrice': 65.21789942, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7200, 'CustomerID': 286, 'Age': 53, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 78.0, 'OnlineOrderFlag': 'false', 'ProductID': 615, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 87.75324114, 'TotalPrice': 87.75324114, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3049, 'CustomerID': 476, 'Age': 47, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 10.0, 'OnlineOrderFlag': 'false', 'ProductID': 783, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 50.24073986, 'TotalPrice': 50.24073986, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 912, 'CustomerID': 138, 'Age': 69, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 59.0, 'OnlineOrderFlag': 'false', 'ProductID': 561, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 50.1469808, 'TotalPrice': 100.2939616, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4042, 'CustomerID': 156, 'Age': 60, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 112, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 61.6296024, 'TotalPrice': 184.8888072, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3756, 'CustomerID': 146, 'Age': 30, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 85.0, 'OnlineOrderFlag': 'false', 'ProductID': 419, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 51.49591607, 'TotalPrice': 205.9836643, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9839, 'CustomerID': 439, 'Age': 37, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 71, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 90.75404919, 'TotalPrice': 453.770246, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9007, 'CustomerID': 237, 'Age': 20, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 899, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 16.57941594, 'TotalPrice': 82.89707968, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1252, 'CustomerID': 367, 'Age': 38, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 798, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 77.2727612, 'TotalPrice': 386.363806, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6439, 'CustomerID': 476, 'Age': 49, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 66.0, 'OnlineOrderFlag': 'false', 'ProductID': 153, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 30.99828943, 'TotalPrice': 92.9948683, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5794, 'CustomerID': 371, 'Age': 44, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 32.0, 'OnlineOrderFlag': 'false', 'ProductID': 515, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 60.1574766, 'TotalPrice': 240.6299064, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7680, 'CustomerID': 199, 'Age': 70, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 872, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 61.19555482, 'TotalPrice': 61.19555482, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2458, 'CustomerID': 477, 'Age': 57, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 991, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 79.21684288, 'TotalPrice': 396.0842144, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7605, 'CustomerID': 481, 'Age': 68, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 76, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 30.17673162, 'TotalPrice': 30.17673162, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2593, 'CustomerID': 57, 'Age': 23, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 76.0, 'OnlineOrderFlag': 'false', 'ProductID': 897, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 56.06160921, 'TotalPrice': 224.2464369, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8743, 'CustomerID': 232, 'Age': 63, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 24.0, 'OnlineOrderFlag': 'false', 'ProductID': 740, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 13.33228327, 'TotalPrice': 53.3291331, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8627, 'CustomerID': 16, 'Age': 29, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 969, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 41.47641817, 'TotalPrice': 165.9056727, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 7863, 'CustomerID': 64, 'Age': 38, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 60.0, 'OnlineOrderFlag': 'false', 'ProductID': 374, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 51.57020228, 'TotalPrice': 103.1404046, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5546, 'CustomerID': 344, 'Age': 40, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 155, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 60.77379013, 'TotalPrice': 182.3213704, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2831, 'CustomerID': 257, 'Age': 21, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'true', 'OnlineOrderFlag': 'false', 'ProductID': 413, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 12.78550824, 'TotalPrice': 63.92754121, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1697, 'CustomerID': 36, 'Age': 59, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 658, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 43.51346792, 'TotalPrice': 174.0538717, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2284, 'CustomerID': 264, 'Age': 18, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 71.0, 'OnlineOrderFlag': 'false', 'ProductID': 615, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 17.38999951, 'TotalPrice': 86.94999757, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 4137, 'CustomerID': 449, 'Age': 38, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 30.0, 'OnlineOrderFlag': 'false', 'ProductID': 59, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 40.74945008, 'TotalPrice': 203.7472504, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3457, 'CustomerID': 169, 'Age': 49, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 113, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 80.89675612, 'TotalPrice': 404.4837806, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4162, 'CustomerID': 105, 'Age': 22, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 27.0, 'OnlineOrderFlag': 'false', 'ProductID': 232, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 51.03572201, 'TotalPrice': 51.03572201, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5064, 'CustomerID': 78, 'Age': 28, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 92.0, 'OnlineOrderFlag': 'false', 'ProductID': 697, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 24.10049913, 'TotalPrice': 48.20099827, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5101, 'CustomerID': 474, 'Age': 49, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 738, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 18.36784073, 'TotalPrice': 36.73568146, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8525, 'CustomerID': 307, 'Age': 35, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 634, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 28.31915277, 'TotalPrice': 84.9574583, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2040, 'CustomerID': 12, 'Age': 30, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 628, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 64.45588582, 'TotalPrice': 322.2794291, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6525, 'CustomerID': 39, 'Age': 35, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 772, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 26.8670696, 'TotalPrice': 80.60120881, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4403, 'CustomerID': 59, 'Age': 32, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 21.0, 'OnlineOrderFlag': 'false', 'ProductID': 299, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 35.55388317, 'TotalPrice': 71.10776634, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 953, 'CustomerID': 329, 'Age': 37, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 12.0, 'OnlineOrderFlag': 'false', 'ProductID': 207, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 56.14012215, 'TotalPrice': 56.14012215, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 4367, 'CustomerID': 208, 'Age': 27, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 71, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 50.38098748, 'TotalPrice': 100.761975, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 9946, 'CustomerID': 311, 'Age': 36, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 24.0, 'OnlineOrderFlag': 'false', 'ProductID': 436, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 79.53753341, 'TotalPrice': 397.6876671, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1269, 'CustomerID': 456, 'Age': 41, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 281, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 56.75339016, 'TotalPrice': 227.0135606, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 743, 'CustomerID': 133, 'Age': 23, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 148, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 38.78692009, 'TotalPrice': 155.1476804, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9889, 'CustomerID': 351, 'Age': 21, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 14.0, 'OnlineOrderFlag': 'false', 'ProductID': 873, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 15.02087803, 'TotalPrice': 15.02087803, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2874, 'CustomerID': 361, 'Age': 68, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 343, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 45.04182217, 'TotalPrice': 180.1672887, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3786, 'CustomerID': 191, 'Age': 30, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 494, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 91.45175, 'TotalPrice': 365.807, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5696, 'CustomerID': 189, 'Age': 59, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 952, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 60.18404118, 'TotalPrice': 180.5521235, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 7977, 'CustomerID': 236, 'Age': 31, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 130, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 59.0052825, 'TotalPrice': 236.02113, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 175, 'CustomerID': 380, 'Age': 45, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 304, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 32.59862089, 'TotalPrice': 97.79586267, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8531, 'CustomerID': 363, 'Age': 48, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 860, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 35.95088142, 'TotalPrice': 71.90176283, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7404, 'CustomerID': 459, 'Age': 34, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 12.0, 'OnlineOrderFlag': 'false', 'ProductID': 702, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 42.46711128, 'TotalPrice': 42.46711128, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2095, 'CustomerID': 133, 'Age': 65, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 195, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 54.31240652, 'TotalPrice': 217.2496261, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 826, 'CustomerID': 397, 'Age': 62, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 13, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 15.80326023, 'TotalPrice': 47.40978068, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5576, 'CustomerID': 25, 'Age': 19, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 778, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 81.17506635, 'TotalPrice': 162.3501327, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8210, 'CustomerID': 109, 'Age': 44, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 624, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 14.72885235, 'TotalPrice': 29.45770469, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 3106, 'CustomerID': 380, 'Age': 38, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 54.0, 'OnlineOrderFlag': 'false', 'ProductID': 114, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 21.17259203, 'TotalPrice': 21.17259203, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4006, 'CustomerID': 497, 'Age': 45, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 2, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 55.7905938, 'TotalPrice': 55.7905938, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 6819, 'CustomerID': 481, 'Age': 47, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 284, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 61.43981723, 'TotalPrice': 184.3194517, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4337, 'CustomerID': 308, 'Age': 31, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 217, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 35.4991836, 'TotalPrice': 177.495918, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2764, 'CustomerID': 362, 'Age': 31, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 93.0, 'OnlineOrderFlag': 'false', 'ProductID': 679, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 29.1280094, 'TotalPrice': 87.3840282, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1586, 'CustomerID': 186, 'Age': 49, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 702, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 42.35377813, 'TotalPrice': 169.4151125, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 200, 'CustomerID': 433, 'Age': 51, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 824, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 34.62769797, 'TotalPrice': 103.8830939, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9654, 'CustomerID': 224, 'Age': 42, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 572, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 65.88844329, 'TotalPrice': 263.5537731, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4794, 'CustomerID': 129, 'Age': 21, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 31.0, 'OnlineOrderFlag': 'false', 'ProductID': 359, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 15.76432034, 'TotalPrice': 15.76432034, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5495, 'CustomerID': 15, 'Age': 55, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 46.0, 'OnlineOrderFlag': 'false', 'ProductID': 950, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 75.39729786, 'TotalPrice': 226.1918936, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3980, 'CustomerID': 151, 'Age': 34, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 525, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 13.61626845, 'TotalPrice': 40.84880534, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 3914, 'CustomerID': 437, 'Age': 24, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 77.0, 'OnlineOrderFlag': 'false', 'ProductID': 665, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 64.47715774, 'TotalPrice': 257.908631, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8527, 'CustomerID': 6, 'Age': 62, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 557, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 15.57559279, 'TotalPrice': 31.15118557, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 2299, 'CustomerID': 379, 'Age': 65, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 133, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 60.23845492, 'TotalPrice': 60.23845492, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9139, 'CustomerID': 195, 'Age': 51, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 22.0, 'OnlineOrderFlag': 'false', 'ProductID': 68, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 70.6558772, 'TotalPrice': 211.9676316, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3970, 'CustomerID': 100, 'Age': 42, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 689, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 89.0716235, 'TotalPrice': 356.286494, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6105, 'CustomerID': 350, 'Age': 63, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 72.0, 'OnlineOrderFlag': 'false', 'ProductID': 986, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 65.86702417, 'TotalPrice': 131.7340483, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 3155, 'CustomerID': 262, 'Age': 44, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 210, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 75.03410702, 'TotalPrice': 75.03410702, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3455, 'CustomerID': 456, 'Age': 43, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 258, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 35.55344021, 'TotalPrice': 142.2137608, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5129, 'CustomerID': 208, 'Age': 24, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 62.0, 'OnlineOrderFlag': 'false', 'ProductID': 332, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 55.8932181, 'TotalPrice': 55.8932181, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 2798, 'CustomerID': 177, 'Age': 34, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 274, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 72.57535856, 'TotalPrice': 145.1507171, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 7803, 'CustomerID': 315, 'Age': 50, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 417, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 30.0055552, 'TotalPrice': 60.0111104, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9999, 'CustomerID': 310, 'Age': 64, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 237, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 20.33476362, 'TotalPrice': 61.00429087, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1012, 'CustomerID': 435, 'Age': 59, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 14.0, 'OnlineOrderFlag': 'false', 'ProductID': 133, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 11.94874134, 'TotalPrice': 23.89748268, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2921, 'CustomerID': 336, 'Age': 38, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 129, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 96.80204675, 'TotalPrice': 387.208187, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 4922, 'CustomerID': 463, 'Age': 24, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 80.0, 'OnlineOrderFlag': 'false', 'ProductID': 503, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 16.01797429, 'TotalPrice': 64.07189715, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9246, 'CustomerID': 110, 'Age': 56, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 33.0, 'OnlineOrderFlag': 'false', 'ProductID': 833, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 69.01899848, 'TotalPrice': 345.0949924, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5527, 'CustomerID': 375, 'Age': 63, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 32.0, 'OnlineOrderFlag': 'false', 'ProductID': 355, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 79.18822897, 'TotalPrice': 316.7529159, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7677, 'CustomerID': 167, 'Age': 43, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 67, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 18.07921407, 'TotalPrice': 36.15842814, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6774, 'CustomerID': 171, 'Age': 69, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 406, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 60.17466555, 'TotalPrice': 300.8733277, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2224, 'CustomerID': 457, 'Age': 23, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 375, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 62.67415404, 'TotalPrice': 125.3483081, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 7057, 'CustomerID': 319, 'Age': 42, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 171, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 81.14360154, 'TotalPrice': 324.5744061, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 9864, 'CustomerID': 472, 'Age': 62, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 837, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 87.10940476, 'TotalPrice': 87.10940476, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 9067, 'CustomerID': 256, 'Age': 58, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 851, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 58.87580893, 'TotalPrice': 235.5032357, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 1667, 'CustomerID': 237, 'Age': 65, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 488, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 24.5453809, 'TotalPrice': 24.5453809, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1900, 'CustomerID': 64, 'Age': 32, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 904, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 19.09311457, 'TotalPrice': 19.09311457, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 225, 'CustomerID': 190, 'Age': 21, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 439, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 97.02413274, 'TotalPrice': 388.096531, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6145, 'CustomerID': 408, 'Age': 50, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 41.0, 'OnlineOrderFlag': 'false', 'ProductID': 443, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 66.03860437, 'TotalPrice': 330.1930219, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2432, 'CustomerID': 404, 'Age': 64, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 311, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 27.96314158, 'TotalPrice': 111.8525663, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1944, 'CustomerID': 193, 'Age': 55, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 56.0, 'OnlineOrderFlag': 'false', 'ProductID': 398, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 29.31685283, 'TotalPrice': 117.2674113, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 9893, 'CustomerID': 31, 'Age': 26, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 394, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 23.00838256, 'TotalPrice': 115.0419128, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7481, 'CustomerID': 383, 'Age': 57, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 86.0, 'OnlineOrderFlag': 'false', 'ProductID': 394, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 94.19555154, 'TotalPrice': 376.7822062, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 4942, 'CustomerID': 81, 'Age': 69, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 86, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 42.33594045, 'TotalPrice': 42.33594045, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5277, 'CustomerID': 308, 'Age': 45, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 17.0, 'OnlineOrderFlag': 'false', 'ProductID': 16, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 83.91939118, 'TotalPrice': 335.6775647, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5022, 'CustomerID': 307, 'Age': 37, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 681, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 27.10089968, 'TotalPrice': 135.5044984, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 3960, 'CustomerID': 2, 'Age': 26, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 649, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 23.63064165, 'TotalPrice': 94.52256658, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5366, 'CustomerID': 184, 'Age': 31, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 886, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 83.55738122, 'TotalPrice': 417.7869061, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2328, 'CustomerID': 84, 'Age': 53, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 409, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 27.97060496, 'TotalPrice': 55.94120991, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4170, 'CustomerID': 149, 'Age': 59, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 634, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 37.28287068, 'TotalPrice': 186.4143534, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 7007, 'CustomerID': 27, 'Age': 70, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 556, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 51.83783573, 'TotalPrice': 155.5135072, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8485, 'CustomerID': 490, 'Age': 22, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 12.0, 'OnlineOrderFlag': 'false', 'ProductID': 854, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 13.20895647, 'TotalPrice': 13.20895647, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1824, 'CustomerID': 249, 'Age': 70, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 707, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 56.00865729, 'TotalPrice': 224.0346292, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6215, 'CustomerID': 425, 'Age': 70, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 96.0, 'OnlineOrderFlag': 'false', 'ProductID': 779, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 42.73566738, 'TotalPrice': 128.2070021, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3723, 'CustomerID': 106, 'Age': 70, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 444, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 50.85842412, 'TotalPrice': 254.2921206, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8555, 'CustomerID': 113, 'Age': 46, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 46.0, 'OnlineOrderFlag': 'false', 'ProductID': 795, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 86.43388575, 'TotalPrice': 259.3016573, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3571, 'CustomerID': 468, 'Age': 39, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 3.0, 'OnlineOrderFlag': 'false', 'ProductID': 557, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 80.49594912, 'TotalPrice': 80.49594912, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1660, 'CustomerID': 211, 'Age': 32, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 3.0, 'OnlineOrderFlag': 'false', 'ProductID': 546, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 91.29234953, 'TotalPrice': 365.1693981, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5563, 'CustomerID': 14, 'Age': 44, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 655, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 13.37346096, 'TotalPrice': 26.74692192, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6684, 'CustomerID': 494, 'Age': 45, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 865, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 62.71678632, 'TotalPrice': 313.5839316, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6387, 'CustomerID': 376, 'Age': 47, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 17.0, 'OnlineOrderFlag': 'false', 'ProductID': 178, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 87.02696699, 'TotalPrice': 87.02696699, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 565, 'CustomerID': 276, 'Age': 50, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 832, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 26.88026649, 'TotalPrice': 26.88026649, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 181, 'CustomerID': 207, 'Age': 25, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 23.0, 'OnlineOrderFlag': 'false', 'ProductID': 232, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 85.9689014, 'TotalPrice': 343.8756056, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2269, 'CustomerID': 267, 'Age': 44, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 44.0, 'OnlineOrderFlag': 'false', 'ProductID': 328, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 51.09388061, 'TotalPrice': 153.2816418, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1971, 'CustomerID': 122, 'Age': 38, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 771, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 85.37126591, 'TotalPrice': 170.7425318, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5542, 'CustomerID': 453, 'Age': 33, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 14, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 61.39035324, 'TotalPrice': 122.7807065, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 151, 'CustomerID': 432, 'Age': 34, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 24.0, 'OnlineOrderFlag': 'false', 'ProductID': 419, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 53.57262443, 'TotalPrice': 214.2904977, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 4852, 'CustomerID': 209, 'Age': 30, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 63.0, 'OnlineOrderFlag': 'false', 'ProductID': 445, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 55.11573241, 'TotalPrice': 110.2314648, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5842, 'CustomerID': 158, 'Age': 66, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 350, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 61.2387251, 'TotalPrice': 306.1936255, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9302, 'CustomerID': 445, 'Age': 42, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 596, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 37.56230895, 'TotalPrice': 150.2492358, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 150, 'CustomerID': 78, 'Age': 64, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 93.0, 'OnlineOrderFlag': 'false', 'ProductID': 357, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 15.78257778, 'TotalPrice': 47.34773334, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2645, 'CustomerID': 285, 'Age': 36, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 779, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 13.64502595, 'TotalPrice': 40.93507786, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8078, 'CustomerID': 129, 'Age': 44, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 199, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 79.33410067, 'TotalPrice': 317.3364027, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5499, 'CustomerID': 246, 'Age': 63, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 579, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 76.41020893, 'TotalPrice': 382.0510447, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7661, 'CustomerID': 478, 'Age': 20, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 415, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 41.20024009, 'TotalPrice': 123.6007203, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5582, 'CustomerID': 433, 'Age': 30, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 99.0, 'OnlineOrderFlag': 'false', 'ProductID': 229, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 97.17314149, 'TotalPrice': 388.692566, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 2339, 'CustomerID': 486, 'Age': 30, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 489, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 24.66800564, 'TotalPrice': 98.67202257, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4295, 'CustomerID': 386, 'Age': 32, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 53.0, 'OnlineOrderFlag': 'false', 'ProductID': 892, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 26.60244922, 'TotalPrice': 79.80734766, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7221, 'CustomerID': 251, 'Age': 55, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 16.0, 'OnlineOrderFlag': 'false', 'ProductID': 441, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 39.13095882, 'TotalPrice': 39.13095882, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 4274, 'CustomerID': 384, 'Age': 24, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 78.0, 'OnlineOrderFlag': 'false', 'ProductID': 632, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 24.21286203, 'TotalPrice': 72.6385861, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 74, 'CustomerID': 379, 'Age': 54, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 535, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 98.40516391, 'TotalPrice': 98.40516391, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 6852, 'CustomerID': 303, 'Age': 30, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 527, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 44.41437465, 'TotalPrice': 88.82874931, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4265, 'CustomerID': 218, 'Age': 23, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 879, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 47.04154879, 'TotalPrice': 141.1246464, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1000, 'CustomerID': 449, 'Age': 66, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 628, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 60.26097406, 'TotalPrice': 301.3048703, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9604, 'CustomerID': 180, 'Age': 42, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 256, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 87.26489827, 'TotalPrice': 436.3244913, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 5611, 'CustomerID': 398, 'Age': 28, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 253, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 61.16767594, 'TotalPrice': 122.3353519, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 7262, 'CustomerID': 470, 'Age': 45, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 40, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 60.82934064, 'TotalPrice': 304.1467032, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1302, 'CustomerID': 3, 'Age': 38, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 67.0, 'OnlineOrderFlag': 'false', 'ProductID': 249, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 76.5378686, 'TotalPrice': 306.1514744, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5660, 'CustomerID': 12, 'Age': 41, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 18.0, 'OnlineOrderFlag': 'false', 'ProductID': 710, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 66.93631448, 'TotalPrice': 66.93631448, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5035, 'CustomerID': 278, 'Age': 47, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 71.0, 'OnlineOrderFlag': 'false', 'ProductID': 328, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 19.51274901, 'TotalPrice': 19.51274901, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5452, 'CustomerID': 494, 'Age': 48, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 185, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 24.26293666, 'TotalPrice': 97.05174663, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7834, 'CustomerID': 499, 'Age': 69, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 26.0, 'OnlineOrderFlag': 'false', 'ProductID': 899, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 93.64761375, 'TotalPrice': 280.9428413, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 8780, 'CustomerID': 363, 'Age': 28, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 41.0, 'OnlineOrderFlag': 'false', 'ProductID': 294, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 62.02102605, 'TotalPrice': 248.0841042, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5980, 'CustomerID': 272, 'Age': 55, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 923, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 67.81694779, 'TotalPrice': 271.2677912, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4343, 'CustomerID': 233, 'Age': 54, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 399, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 19.130103, 'TotalPrice': 76.52041201, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8756, 'CustomerID': 494, 'Age': 41, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 276, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 90.41306283, 'TotalPrice': 180.8261257, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1055, 'CustomerID': 372, 'Age': 55, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 285, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 99.84308579, 'TotalPrice': 99.84308579, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9986, 'CustomerID': 315, 'Age': 38, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 840, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 40.92670612, 'TotalPrice': 204.6335306, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 875, 'CustomerID': 273, 'Age': 36, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 59.0, 'OnlineOrderFlag': 'false', 'ProductID': 799, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 67.33991464, 'TotalPrice': 134.6798293, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5993, 'CustomerID': 340, 'Age': 24, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 539, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 76.5047459, 'TotalPrice': 153.0094918, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2173, 'CustomerID': 300, 'Age': 55, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 794, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 84.48217359, 'TotalPrice': 168.9643472, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 7749, 'CustomerID': 493, 'Age': 23, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 87, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 57.79794956, 'TotalPrice': 288.9897478, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4005, 'CustomerID': 223, 'Age': 60, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 179, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 61.07337402, 'TotalPrice': 244.2934961, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 4543, 'CustomerID': 18, 'Age': 39, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 6.0, 'OnlineOrderFlag': 'false', 'ProductID': 419, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 68.64527277, 'TotalPrice': 205.9358183, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5459, 'CustomerID': 265, 'Age': 28, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 258, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 13.98329217, 'TotalPrice': 41.94987651, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1261, 'CustomerID': 14, 'Age': 67, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 654, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 82.41741294, 'TotalPrice': 329.6696517, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9146, 'CustomerID': 283, 'Age': 30, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 88.0, 'OnlineOrderFlag': 'false', 'ProductID': 838, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 91.22750165, 'TotalPrice': 182.4550033, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4050, 'CustomerID': 28, 'Age': 68, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 394, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 28.16049879, 'TotalPrice': 84.48149636, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1255, 'CustomerID': 98, 'Age': 23, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 8, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 43.26676251, 'TotalPrice': 173.06705, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 3391, 'CustomerID': 11, 'Age': 64, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 79.0, 'OnlineOrderFlag': 'false', 'ProductID': 644, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 52.77336043, 'TotalPrice': 52.77336043, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8694, 'CustomerID': 58, 'Age': 56, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 243, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 12.07754481, 'TotalPrice': 36.23263443, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 4034, 'CustomerID': 428, 'Age': 45, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 134, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 64.29009667, 'TotalPrice': 192.87029, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3284, 'CustomerID': 381, 'Age': 64, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 79.0, 'OnlineOrderFlag': 'false', 'ProductID': 33, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 58.51185097, 'TotalPrice': 292.5592549, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 3819, 'CustomerID': 419, 'Age': 47, 'Gender': 'Female', 'Location': 'City_16', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 711, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 89.8014278, 'TotalPrice': 179.6028556, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2464, 'CustomerID': 311, 'Age': 60, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 55.0, 'OnlineOrderFlag': 'false', 'ProductID': 994, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 45.47984084, 'TotalPrice': 136.4395225, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6173, 'CustomerID': 120, 'Age': 38, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 480, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 90.41213388, 'TotalPrice': 90.41213388, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3874, 'CustomerID': 332, 'Age': 68, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 615, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 98.59377852, 'TotalPrice': 98.59377852, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 7757, 'CustomerID': 90, 'Age': 32, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 825, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 15.54074669, 'TotalPrice': 15.54074669, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 8266, 'CustomerID': 324, 'Age': 62, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 708, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 19.79546002, 'TotalPrice': 19.79546002, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4924, 'CustomerID': 204, 'Age': 52, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 161, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 52.34317144, 'TotalPrice': 209.3726858, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4132, 'CustomerID': 407, 'Age': 49, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 747, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 56.47008854, 'TotalPrice': 225.8803542, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3693, 'CustomerID': 221, 'Age': 64, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 46.0, 'OnlineOrderFlag': 'false', 'ProductID': 320, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 30.4795087, 'TotalPrice': 60.95901739, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5526, 'CustomerID': 137, 'Age': 62, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 100, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 86.64485125, 'TotalPrice': 173.2897025, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8204, 'CustomerID': 185, 'Age': 54, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 71.0, 'OnlineOrderFlag': 'false', 'ProductID': 890, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 49.40525627, 'TotalPrice': 247.0262814, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2017, 'CustomerID': 110, 'Age': 38, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 238, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 91.54266809, 'TotalPrice': 457.7133404, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3262, 'CustomerID': 135, 'Age': 68, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 86.0, 'OnlineOrderFlag': 'false', 'ProductID': 158, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 59.56716813, 'TotalPrice': 238.2686725, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 4953, 'CustomerID': 427, 'Age': 47, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 152, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 33.41691752, 'TotalPrice': 66.83383505, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9110, 'CustomerID': 447, 'Age': 64, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 23.0, 'OnlineOrderFlag': 'false', 'ProductID': 424, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 65.81569676, 'TotalPrice': 131.6313935, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 6135, 'CustomerID': 499, 'Age': 33, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 901, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 70.11871681, 'TotalPrice': 280.4748672, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3878, 'CustomerID': 377, 'Age': 44, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 383, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 42.48244724, 'TotalPrice': 212.4122362, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 2889, 'CustomerID': 63, 'Age': 18, 'Gender': 'Male', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 275, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 97.15937183, 'TotalPrice': 291.4781155, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8965, 'CustomerID': 83, 'Age': 63, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 706, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 55.30971431, 'TotalPrice': 276.5485715, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6538, 'CustomerID': 55, 'Age': 29, 'Gender': 'Female', 'Location': 'City_7', 'StoreID': 15.0, 'OnlineOrderFlag': 'false', 'ProductID': 659, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 14.7716527, 'TotalPrice': 44.31495811, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2896, 'CustomerID': 429, 'Age': 51, 'Gender': 'Other', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 444, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 12.85929161, 'TotalPrice': 38.57787484, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5862, 'CustomerID': 352, 'Age': 56, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 154, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 69.87738221, 'TotalPrice': 209.6321466, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 8426, 'CustomerID': 19, 'Age': 69, 'Gender': 'Other', 'Location': 'City_7', 'StoreID': 4.0, 'OnlineOrderFlag': 'false', 'ProductID': 394, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 74.12427238, 'TotalPrice': 148.2485448, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6477, 'CustomerID': 440, 'Age': 18, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 25.0, 'OnlineOrderFlag': 'false', 'ProductID': 606, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 73.65721222, 'TotalPrice': 368.2860611, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2628, 'CustomerID': 125, 'Age': 21, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 72.0, 'OnlineOrderFlag': 'false', 'ProductID': 259, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 90.94257892, 'TotalPrice': 363.7703157, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2933, 'CustomerID': 464, 'Age': 39, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 880, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 21.59087127, 'TotalPrice': 43.18174253, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7460, 'CustomerID': 433, 'Age': 38, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 65.0, 'OnlineOrderFlag': 'false', 'ProductID': 111, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 88.34369519, 'TotalPrice': 441.718476, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6430, 'CustomerID': 375, 'Age': 38, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 370, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 52.79546735, 'TotalPrice': 52.79546735, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 418, 'CustomerID': 302, 'Age': 63, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 209, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 75.52250776, 'TotalPrice': 377.6125388, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 8888, 'CustomerID': 491, 'Age': 43, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 81.0, 'OnlineOrderFlag': 'false', 'ProductID': 34, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 29.58505259, 'TotalPrice': 147.925263, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 6861, 'CustomerID': 410, 'Age': 25, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 59, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 78.86285002, 'TotalPrice': 157.7257, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3508, 'CustomerID': 394, 'Age': 55, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 18, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 89.81435433, 'TotalPrice': 89.81435433, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 2294, 'CustomerID': 88, 'Age': 62, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 57.0, 'OnlineOrderFlag': 'false', 'ProductID': 161, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 10.53926469, 'TotalPrice': 21.07852938, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1499, 'CustomerID': 123, 'Age': 70, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 27.0, 'OnlineOrderFlag': 'false', 'ProductID': 875, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 53.01224715, 'TotalPrice': 53.01224715, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3846, 'CustomerID': 416, 'Age': 25, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 42.0, 'OnlineOrderFlag': 'false', 'ProductID': 137, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 30.06491822, 'TotalPrice': 30.06491822, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 3451, 'CustomerID': 126, 'Age': 57, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 5.0, 'OnlineOrderFlag': 'false', 'ProductID': 768, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 11.42218257, 'TotalPrice': 11.42218257, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6463, 'CustomerID': 6, 'Age': 39, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 350, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 87.93008768, 'TotalPrice': 175.8601754, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 1867, 'CustomerID': 195, 'Age': 69, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 215, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 58.9756134, 'TotalPrice': 294.878067, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3388, 'CustomerID': 403, 'Age': 61, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 21, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 89.11365902, 'TotalPrice': 178.227318, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1159, 'CustomerID': 294, 'Age': 41, 'Gender': 'Male', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 965, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 34.17696238, 'TotalPrice': 170.8848119, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1231, 'CustomerID': 218, 'Age': 65, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 129, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 86.50630606, 'TotalPrice': 259.5189182, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 7873, 'CustomerID': 247, 'Age': 38, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 129, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 41.21190593, 'TotalPrice': 123.6357178, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2877, 'CustomerID': 81, 'Age': 52, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 391, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 14.9851195, 'TotalPrice': 29.970239, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 7936, 'CustomerID': 239, 'Age': 55, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 192, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 54.63167497, 'TotalPrice': 54.63167497, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1058, 'CustomerID': 238, 'Age': 34, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 279, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 98.24630088, 'TotalPrice': 196.4926018, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3652, 'CustomerID': 383, 'Age': 24, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 52.0, 'OnlineOrderFlag': 'false', 'ProductID': 997, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 12.24630546, 'TotalPrice': 24.49261092, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6850, 'CustomerID': 53, 'Age': 38, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 268, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 96.20331297, 'TotalPrice': 192.4066259, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6057, 'CustomerID': 343, 'Age': 67, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 70.0, 'OnlineOrderFlag': 'false', 'ProductID': 751, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 11.850522999999999, 'TotalPrice': 11.850522999999999, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3600, 'CustomerID': 202, 'Age': 32, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 790, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 63.07903268, 'TotalPrice': 126.1580654, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9202, 'CustomerID': 365, 'Age': 39, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 187, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 94.96197917, 'TotalPrice': 379.8479167, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5500, 'CustomerID': 116, 'Age': 58, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 24.0, 'OnlineOrderFlag': 'false', 'ProductID': 776, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 55.08536924, 'TotalPrice': 275.4268462, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 785, 'CustomerID': 318, 'Age': 30, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 24.0, 'OnlineOrderFlag': 'false', 'ProductID': 831, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 81.53456491, 'TotalPrice': 326.1382596, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5282, 'CustomerID': 88, 'Age': 38, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 777, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 14.75113218, 'TotalPrice': 59.00452873, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 8569, 'CustomerID': 93, 'Age': 48, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 978, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 21.31447768, 'TotalPrice': 85.2579107, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1711, 'CustomerID': 63, 'Age': 41, 'Gender': 'Male', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 585, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 53.15060483, 'TotalPrice': 265.7530242, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4671, 'CustomerID': 424, 'Age': 70, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 41.0, 'OnlineOrderFlag': 'false', 'ProductID': 152, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 56.55378538, 'TotalPrice': 282.7689269, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 4770, 'CustomerID': 236, 'Age': 56, 'Gender': 'Female', 'Location': 'City_12', 'StoreID': 47.0, 'OnlineOrderFlag': 'false', 'ProductID': 586, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 36.81156248, 'TotalPrice': 147.2462499, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 6985, 'CustomerID': 425, 'Age': 65, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 32.0, 'OnlineOrderFlag': 'false', 'ProductID': 25, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 78.2497697, 'TotalPrice': 312.9990788, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 271, 'CustomerID': 110, 'Age': 62, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 54.0, 'OnlineOrderFlag': 'false', 'ProductID': 527, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 62.61484417, 'TotalPrice': 313.0742208, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 6500, 'CustomerID': 225, 'Age': 57, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 855, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 94.44635477, 'TotalPrice': 94.44635477, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2862, 'CustomerID': 352, 'Age': 45, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 50.0, 'OnlineOrderFlag': 'false', 'ProductID': 606, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 51.84123006, 'TotalPrice': 259.2061503, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 3053, 'CustomerID': 5, 'Age': 54, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 49.0, 'OnlineOrderFlag': 'false', 'ProductID': 319, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 29.61723996, 'TotalPrice': 148.0861998, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2302, 'CustomerID': 398, 'Age': 47, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 990, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 49.99641623, 'TotalPrice': 249.9820811, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8438, 'CustomerID': 67, 'Age': 26, 'Gender': 'Other', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 688, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 90.80627838, 'TotalPrice': 181.6125568, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 957, 'CustomerID': 430, 'Age': 37, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 49.0, 'OnlineOrderFlag': 'false', 'ProductID': 81, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 77.33661219, 'TotalPrice': 386.683061, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7885, 'CustomerID': 343, 'Age': 37, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 76.0, 'OnlineOrderFlag': 'false', 'ProductID': 585, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 42.3062123, 'TotalPrice': 84.6124246, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1040, 'CustomerID': 147, 'Age': 41, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 372, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 72.12936782, 'TotalPrice': 72.12936782, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5896, 'CustomerID': 235, 'Age': 22, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 53.0, 'OnlineOrderFlag': 'false', 'ProductID': 661, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 98.84617271, 'TotalPrice': 296.5385181, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5818, 'CustomerID': 282, 'Age': 49, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 73.0, 'OnlineOrderFlag': 'false', 'ProductID': 802, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 46.07730105, 'TotalPrice': 138.2319031, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 3718, 'CustomerID': 75, 'Age': 44, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 352, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 12.33556875, 'TotalPrice': 24.67113749, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 1529, 'CustomerID': 344, 'Age': 59, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 61.0, 'OnlineOrderFlag': 'false', 'ProductID': 783, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 91.97566548, 'TotalPrice': 367.9026619, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1791, 'CustomerID': 315, 'Age': 28, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 450, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 76.94164663, 'TotalPrice': 153.8832933, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2245, 'CustomerID': 140, 'Age': 64, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 85, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 18.80545225, 'TotalPrice': 37.6109045, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6523, 'CustomerID': 440, 'Age': 22, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 13.0, 'OnlineOrderFlag': 'false', 'ProductID': 759, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 43.27250699, 'TotalPrice': 129.817521, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 4119, 'CustomerID': 332, 'Age': 58, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 60.0, 'OnlineOrderFlag': 'false', 'ProductID': 650, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 46.22491029, 'TotalPrice': 184.8996412, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5305, 'CustomerID': 99, 'Age': 59, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 958, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 12.13443528, 'TotalPrice': 24.26887057, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8285, 'CustomerID': 288, 'Age': 33, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 85, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 80.89859587, 'TotalPrice': 80.89859587, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9657, 'CustomerID': 142, 'Age': 24, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 10.0, 'OnlineOrderFlag': 'false', 'ProductID': 931, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 18.21377459, 'TotalPrice': 91.06887295, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2456, 'CustomerID': 288, 'Age': 23, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 57.0, 'OnlineOrderFlag': 'false', 'ProductID': 521, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 83.48085582, 'TotalPrice': 417.4042791, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 7031, 'CustomerID': 374, 'Age': 63, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 87.0, 'OnlineOrderFlag': 'false', 'ProductID': 202, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 19.24741215, 'TotalPrice': 19.24741215, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6987, 'CustomerID': 30, 'Age': 38, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 711, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 42.10593177, 'TotalPrice': 126.3177953, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 4663, 'CustomerID': 403, 'Age': 30, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 88, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 94.85748006, 'TotalPrice': 379.4299202, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 2999, 'CustomerID': 46, 'Age': 48, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 162, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 57.418786, 'TotalPrice': 172.256358, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1235, 'CustomerID': 216, 'Age': 31, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 217, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 41.92538293, 'TotalPrice': 209.6269146, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9168, 'CustomerID': 215, 'Age': 64, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 141, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 96.00226036, 'TotalPrice': 480.0113018, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9959, 'CustomerID': 411, 'Age': 40, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 266, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 13.89907685, 'TotalPrice': 55.5963074, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 5498, 'CustomerID': 55, 'Age': 53, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 40.0, 'OnlineOrderFlag': 'false', 'ProductID': 320, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 35.86240233, 'TotalPrice': 179.3120117, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7009, 'CustomerID': 126, 'Age': 67, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 136, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 67.21364929, 'TotalPrice': 67.21364929, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1005, 'CustomerID': 111, 'Age': 36, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 501, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 14.73081989, 'TotalPrice': 44.19245968, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8220, 'CustomerID': 378, 'Age': 52, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 439, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 76.78169155, 'TotalPrice': 153.5633831, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 9173, 'CustomerID': 263, 'Age': 36, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 947, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 11.7970259, 'TotalPrice': 35.3910777, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 5511, 'CustomerID': 33, 'Age': 22, 'Gender': 'Male', 'Location': 'City_10', 'StoreID': 'true', 'OnlineOrderFlag': 'false', 'ProductID': 470, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 85.71312316, 'TotalPrice': 342.8524926, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4748, 'CustomerID': 346, 'Age': 29, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 94.0, 'OnlineOrderFlag': 'false', 'ProductID': 81, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 58.29872865, 'TotalPrice': 233.1949146, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 48, 'CustomerID': 448, 'Age': 33, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 722, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 67.92499783, 'TotalPrice': 135.8499957, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 2274, 'CustomerID': 489, 'Age': 58, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 59.0, 'OnlineOrderFlag': 'false', 'ProductID': 590, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 20.13324001, 'TotalPrice': 80.53296002, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 2400, 'CustomerID': 192, 'Age': 26, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 615, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 39.43558571, 'TotalPrice': 157.7423428, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8401, 'CustomerID': 379, 'Age': 45, 'Gender': 'Other', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 447, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 29.43459127, 'TotalPrice': 117.7383651, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 8008, 'CustomerID': 466, 'Age': 56, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 897, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 82.40250082, 'TotalPrice': 329.6100033, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9427, 'CustomerID': 202, 'Age': 65, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 55.0, 'OnlineOrderFlag': 'false', 'ProductID': 110, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 21.4260802, 'TotalPrice': 64.27824061, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5678, 'CustomerID': 310, 'Age': 61, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 283, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 13.69399601, 'TotalPrice': 27.38799202, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 5033, 'CustomerID': 101, 'Age': 30, 'Gender': 'Other', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 725, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 26.06849754, 'TotalPrice': 26.06849754, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 9092, 'CustomerID': 500, 'Age': 67, 'Gender': 'Male', 'Location': 'City_5', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 909, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 84.94492833, 'TotalPrice': 339.7797133, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 3908, 'CustomerID': 49, 'Age': 35, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 302, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 28.92497461, 'TotalPrice': 115.6998985, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 9088, 'CustomerID': 226, 'Age': 28, 'Gender': 'Other', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 526, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 27.35206584, 'TotalPrice': 27.35206584, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6830, 'CustomerID': 70, 'Age': 21, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 38.0, 'OnlineOrderFlag': 'false', 'ProductID': 792, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 18.73115693, 'TotalPrice': 93.65578467, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3670, 'CustomerID': 385, 'Age': 26, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 15.0, 'OnlineOrderFlag': 'false', 'ProductID': 127, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 63.78952873, 'TotalPrice': 255.1581149, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8193, 'CustomerID': 260, 'Age': 41, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 15.0, 'OnlineOrderFlag': 'false', 'ProductID': 853, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 56.00516984, 'TotalPrice': 224.0206794, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 7473, 'CustomerID': 456, 'Age': 26, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 418, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 25.62413892, 'TotalPrice': 128.1206946, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 6983, 'CustomerID': 454, 'Age': 50, 'Gender': 'Female', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 720, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 92.24611542, 'TotalPrice': 92.24611542, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2524, 'CustomerID': 387, 'Age': 37, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 417, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 58.41757885, 'TotalPrice': 58.41757885, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7949, 'CustomerID': 459, 'Age': 42, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 5.0, 'OnlineOrderFlag': 'false', 'ProductID': 618, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 32.4940391, 'TotalPrice': 32.4940391, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 5010, 'CustomerID': 48, 'Age': 36, 'Gender': 'Female', 'Location': 'City_17', 'StoreID': 75.0, 'OnlineOrderFlag': 'false', 'ProductID': 173, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 37.37194186, 'TotalPrice': 74.74388372, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 6374, 'CustomerID': 152, 'Age': 29, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 7.0, 'OnlineOrderFlag': 'false', 'ProductID': 879, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 22.85734873, 'TotalPrice': 114.2867436, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4450, 'CustomerID': 200, 'Age': 24, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 43.0, 'OnlineOrderFlag': 'false', 'ProductID': 745, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 65.39973229, 'TotalPrice': 130.7994646, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 780, 'CustomerID': 367, 'Age': 18, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 991, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 14.46682251, 'TotalPrice': 43.40046753, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2238, 'CustomerID': 206, 'Age': 31, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 340, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 1, 'UnitPrice': 87.2365966, 'TotalPrice': 87.2365966, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 1301, 'CustomerID': 328, 'Age': 20, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 893, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 83.2699104, 'TotalPrice': 416.349552, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 5624, 'CustomerID': 322, 'Age': 29, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 774, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 98.83314663, 'TotalPrice': 494.1657332, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 1080, 'CustomerID': 293, 'Age': 67, 'Gender': 'Female', 'Location': 'City_10', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 36, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 94.05658495, 'TotalPrice': 376.2263398, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 160, 'CustomerID': 412, 'Age': 36, 'Gender': 'Female', 'Location': 'City_2', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 687, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 92.81888365, 'TotalPrice': 464.0944183, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7257, 'CustomerID': 320, 'Age': 41, 'Gender': 'Other', 'Location': 'City_3', 'StoreID': 58.0, 'OnlineOrderFlag': 'false', 'ProductID': 974, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 72.91404113, 'TotalPrice': 291.6561645, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6867, 'CustomerID': 109, 'Age': 20, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 33.0, 'OnlineOrderFlag': 'false', 'ProductID': 837, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 50.01049017, 'TotalPrice': 50.01049017, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 6202, 'CustomerID': 323, 'Age': 58, 'Gender': 'Male', 'Location': 'City_3', 'StoreID': 63.0, 'OnlineOrderFlag': 'false', 'ProductID': 192, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 31.66786903, 'TotalPrice': 63.33573807, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 3640, 'CustomerID': 269, 'Age': 41, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 66.0, 'OnlineOrderFlag': 'false', 'ProductID': 767, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 72.25082261, 'TotalPrice': 361.254113, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 8129, 'CustomerID': 415, 'Age': 29, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 568, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 98.40088468, 'TotalPrice': 295.202654, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 5105, 'CustomerID': 397, 'Age': 56, 'Gender': 'Male', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 886, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 97.3509846, 'TotalPrice': 97.3509846, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 1236, 'CustomerID': 155, 'Age': 61, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 105, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 38.67610117, 'TotalPrice': 116.0283035, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 3047, 'CustomerID': 188, 'Age': 68, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 215, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 18.03525895, 'TotalPrice': 54.10577685, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 7476, 'CustomerID': 408, 'Age': 40, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 789, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 49.81835841, 'TotalPrice': 149.4550752, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7778, 'CustomerID': 397, 'Age': 58, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 21.0, 'OnlineOrderFlag': 'false', 'ProductID': 991, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 13.08419373, 'TotalPrice': 39.2525812, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 5556, 'CustomerID': 129, 'Age': 66, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 9, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 48.36947475, 'TotalPrice': 241.8473737, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9011, 'CustomerID': 137, 'Age': 19, 'Gender': 'Male', 'Location': 'City_8', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 462, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 1, 'UnitPrice': 43.74449147, 'TotalPrice': 43.74449147, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2422, 'CustomerID': 484, 'Age': 47, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 68, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 4, 'UnitPrice': 56.76876984, 'TotalPrice': 227.0750794, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 8778, 'CustomerID': 122, 'Age': 64, 'Gender': 'Female', 'Location': 'City_18', 'StoreID': 65.0, 'OnlineOrderFlag': 'false', 'ProductID': 89, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 69.13676185, 'TotalPrice': 207.4102855, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6913, 'CustomerID': 490, 'Age': 47, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 882, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 4, 'UnitPrice': 16.17298008, 'TotalPrice': 64.69192032, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7375, 'CustomerID': 100, 'Age': 64, 'Gender': 'Male', 'Location': 'City_7', 'StoreID': 32.0, 'OnlineOrderFlag': 'false', 'ProductID': 701, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 87.9882338, 'TotalPrice': 175.9764676, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6005, 'CustomerID': 348, 'Age': 39, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 576, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 1, 'UnitPrice': 53.53890434, 'TotalPrice': 53.53890434, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 4366, 'CustomerID': 488, 'Age': 55, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 60.0, 'OnlineOrderFlag': 'false', 'ProductID': 550, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 56.65174569, 'TotalPrice': 226.6069828, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 9396, 'CustomerID': 83, 'Age': 27, 'Gender': 'Female', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 900, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 2, 'UnitPrice': 28.30411263, 'TotalPrice': 56.60822526, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 2.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 3639, 'CustomerID': 414, 'Age': 40, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 806, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 50.17624907, 'TotalPrice': 150.5287472, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 5141, 'CustomerID': 83, 'Age': 41, 'Gender': 'Male', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 701, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 58.30381034, 'TotalPrice': 291.5190517, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 3.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 668, 'CustomerID': 326, 'Age': 22, 'Gender': 'Female', 'Location': 'City_9', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 215, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 58.15890966, 'TotalPrice': 290.7945483, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 5.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 2928, 'CustomerID': 205, 'Age': 65, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 94.0, 'OnlineOrderFlag': 'false', 'ProductID': 950, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 87.33616488, 'TotalPrice': 262.0084946, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 602, 'CustomerID': 306, 'Age': 41, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 5.0, 'OnlineOrderFlag': 'false', 'ProductID': 994, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 40.58915297, 'TotalPrice': 202.9457648, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 273, 'CustomerID': 475, 'Age': 35, 'Gender': 'Other', 'Location': 'City_10', 'StoreID': 49.0, 'OnlineOrderFlag': 'false', 'ProductID': 893, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 21.0129329, 'TotalPrice': 84.05173161, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'false'},
{'TransactionID': 7683, 'CustomerID': 120, 'Age': 54, 'Gender': 'Male', 'Location': 'City_15', 'StoreID': 48.0, 'OnlineOrderFlag': 'false', 'ProductID': 646, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 38.08698501, 'TotalPrice': 76.17397002, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 6790, 'CustomerID': 395, 'Age': 53, 'Gender': 'Female', 'Location': 'City_5', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 312, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 13.44668999, 'TotalPrice': 53.78675998, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 7966, 'CustomerID': 369, 'Age': 44, 'Gender': 'Female', 'Location': 'City_20', 'StoreID': 97.0, 'OnlineOrderFlag': 'false', 'ProductID': 980, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 63.63946279, 'TotalPrice': 190.9183884, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1264, 'CustomerID': 335, 'Age': 31, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 22.0, 'OnlineOrderFlag': 'false', 'ProductID': 647, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 21.71187322, 'TotalPrice': 65.13561966, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 2482, 'CustomerID': 345, 'Age': 40, 'Gender': 'Male', 'Location': 'City_12', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 946, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 31.13870978, 'TotalPrice': 124.5548391, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Overnight', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 9297, 'CustomerID': 484, 'Age': 28, 'Gender': 'Other', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 771, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 96.15620765, 'TotalPrice': 288.468623, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 436, 'CustomerID': 106, 'Age': 30, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 2.0, 'OnlineOrderFlag': 'false', 'ProductID': 522, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 54.47731, 'TotalPrice': 108.95462, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 1222, 'CustomerID': 157, 'Age': 36, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 100.0, 'OnlineOrderFlag': 'false', 'ProductID': 943, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 5, 'UnitPrice': 50.58454501, 'TotalPrice': 252.9227251, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 17, 'CustomerID': 447, 'Age': 23, 'Gender': 'Other', 'Location': 'City_17', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 346, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 47.16863787, 'TotalPrice': 47.16863787, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3817, 'CustomerID': 84, 'Age': 26, 'Gender': 'Other', 'Location': 'City_20', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 888, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 99.36707774999999, 'TotalPrice': 99.36707774999999, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 3232, 'CustomerID': 274, 'Age': 54, 'Gender': 'Male', 'Location': 'City_18', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 520, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 3, 'UnitPrice': 44.09263657, 'TotalPrice': 132.2779097, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 7161, 'CustomerID': 154, 'Age': 69, 'Gender': 'Other', 'Location': 'City_18', 'StoreID': 98.0, 'OnlineOrderFlag': 'false', 'ProductID': 88, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 55.37830039, 'TotalPrice': 110.7566008, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 3461, 'CustomerID': 205, 'Age': 46, 'Gender': 'Female', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 579, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 82.31283067, 'TotalPrice': 164.6256613, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 7702, 'CustomerID': 438, 'Age': 51, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 973, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 68.28711479, 'TotalPrice': 341.435574, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 1094, 'CustomerID': 265, 'Age': 69, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 51.0, 'OnlineOrderFlag': 'false', 'ProductID': 917, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 56.80698205, 'TotalPrice': 113.6139641, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 2968, 'CustomerID': 124, 'Age': 26, 'Gender': 'Other', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 707, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 57.22568254, 'TotalPrice': 286.1284127, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 2368, 'CustomerID': 232, 'Age': 21, 'Gender': 'Male', 'Location': 'City_4', 'StoreID': 84.0, 'OnlineOrderFlag': 'false', 'ProductID': 409, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 5, 'UnitPrice': 87.48903897, 'TotalPrice': 437.4451948, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'false'},
{'TransactionID': 1392, 'CustomerID': 478, 'Age': 40, 'Gender': 'Male', 'Location': 'City_2', 'StoreID': 28.0, 'OnlineOrderFlag': 'false', 'ProductID': 890, 'ProductName': 'Food_Product', 'Category': 'Food', 'Quantity': 5, 'UnitPrice': 47.75072019, 'TotalPrice': 238.7536009, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'false'},
{'TransactionID': 5949, 'CustomerID': 315, 'Age': 22, 'Gender': 'Female', 'Location': 'City_8', 'StoreID': 12.0, 'OnlineOrderFlag': 'false', 'ProductID': 834, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 3, 'UnitPrice': 37.76717763, 'TotalPrice': 113.3015329, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 9776, 'CustomerID': 303, 'Age': 34, 'Gender': 'Other', 'Location': 'City_16', 'StoreID': 36.0, 'OnlineOrderFlag': 'false', 'ProductID': 541, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 26.30571976, 'TotalPrice': 78.91715928, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'true'},
{'TransactionID': 9441, 'CustomerID': 284, 'Age': 18, 'Gender': 'Female', 'Location': 'City_4', 'StoreID': 15.0, 'OnlineOrderFlag': 'false', 'ProductID': 385, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 30.40972521, 'TotalPrice': 60.81945042, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 5879, 'CustomerID': 123, 'Age': 40, 'Gender': 'Female', 'Location': 'City_6', 'StoreID': 40.0, 'OnlineOrderFlag': 'false', 'ProductID': 721, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 44.69982355, 'TotalPrice': 89.3996471, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 8170, 'CustomerID': 500, 'Age': 47, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 507, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 3, 'UnitPrice': 29.61113377, 'TotalPrice': 88.83340132, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 607, 'CustomerID': 276, 'Age': 37, 'Gender': 'Other', 'Location': 'City_13', 'StoreID': 68.0, 'OnlineOrderFlag': 'false', 'ProductID': 918, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 27.57157487, 'TotalPrice': 27.57157487, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 1592, 'CustomerID': 113, 'Age': 39, 'Gender': 'Female', 'Location': 'City_1', 'StoreID': 54.0, 'OnlineOrderFlag': 'false', 'ProductID': 355, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 5, 'UnitPrice': 92.36383151, 'TotalPrice': 461.8191575, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 1859, 'CustomerID': 175, 'Age': 29, 'Gender': 'Other', 'Location': 'City_8', 'StoreID': 47.0, 'OnlineOrderFlag': 'false', 'ProductID': 91, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 4, 'UnitPrice': 45.04908882, 'TotalPrice': 180.1963553, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 636, 'CustomerID': 370, 'Age': 69, 'Gender': 'Female', 'Location': 'City_3', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 198, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 2, 'UnitPrice': 68.02979493, 'TotalPrice': 136.0595899, 'PaymentType': 'Online Payment', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 9019, 'CustomerID': 283, 'Age': 58, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 42.0, 'OnlineOrderFlag': 'false', 'ProductID': 555, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 5, 'UnitPrice': 42.76113928, 'TotalPrice': 213.8056964, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 4390, 'CustomerID': 194, 'Age': 38, 'Gender': 'Male', 'Location': 'City_11', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 107, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 70.16526789, 'TotalPrice': 140.3305358, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 638, 'CustomerID': 415, 'Age': 38, 'Gender': 'Male', 'Location': 'City_6', 'StoreID': 55.0, 'OnlineOrderFlag': 'false', 'ProductID': 541, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 3, 'UnitPrice': 43.3598951, 'TotalPrice': 130.0796853, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 6269, 'CustomerID': 292, 'Age': 63, 'Gender': 'Other', 'Location': 'City_15', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 634, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 4, 'UnitPrice': 89.02226036, 'TotalPrice': 356.0890414, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Overnight', 'DeliveryTime': 4.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 4451, 'CustomerID': 282, 'Age': 54, 'Gender': 'Male', 'Location': 'City_13', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 500, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 74.99722568, 'TotalPrice': 224.991677, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 3.0, 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 8133, 'CustomerID': 48, 'Age': 64, 'Gender': 'Other', 'Location': 'City_4', 'StoreID': 21.0, 'OnlineOrderFlag': 'false', 'ProductID': 722, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 4, 'UnitPrice': 17.13445162, 'TotalPrice': 68.53780648, 'PaymentType': 'Online Payment', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 5, 'ReturnFlag': 'true'},
{'TransactionID': 8895, 'CustomerID': 76, 'Age': 36, 'Gender': 'Female', 'Location': 'City_14', 'StoreID': 75.0, 'OnlineOrderFlag': 'false', 'ProductID': 798, 'ProductName': 'Clothing_Product', 'Category': 'Clothing', 'Quantity': 1, 'UnitPrice': 43.95976568, 'TotalPrice': 43.95976568, 'PaymentType': 'Credit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 3, 'ReturnFlag': 'true'},
{'TransactionID': 2963, 'CustomerID': 432, 'Age': 49, 'Gender': 'Male', 'Location': 'City_14', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 183, 'ProductName': 'Decorations_Product', 'Category': 'Decorations', 'Quantity': 2, 'UnitPrice': 15.43934344, 'TotalPrice': 30.87868688, 'PaymentType': 'Debit Card', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Express', 'DeliveryTime': 2.0, 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 4, 'ReturnFlag': 'false'},
{'TransactionID': 8727, 'CustomerID': 126, 'Age': 50, 'Gender': 'Female', 'Location': 'City_19', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 811, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 2, 'UnitPrice': 18.68454369, 'TotalPrice': 37.36908738, 'PaymentType': 'Cash', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'Standard', 'DeliveryTime': 'true', 'Weather': 'Sunny', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
{'TransactionID': 9397, 'CustomerID': 154, 'Age': 24, 'Gender': 'Male', 'Location': 'City_1', 'StoreID': 'NaN', 'OnlineOrderFlag': 'true', 'ProductID': 684, 'ProductName': 'Toys_Product', 'Category': 'Toys', 'Quantity': 2, 'UnitPrice': 35.25972153, 'TotalPrice': 70.51944306, 'PaymentType': 'Cash', 'PromotionApplied': 'true', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'Express', 'DeliveryTime': 5.0, 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 1, 'ReturnFlag': 'true'},
{'TransactionID': 8995, 'CustomerID': 381, 'Age': 18, 'Gender': 'Other', 'Location': 'City_2', 'StoreID': 69.0, 'OnlineOrderFlag': 'false', 'ProductID': 917, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 1, 'UnitPrice': 82.2117645, 'TotalPrice': 82.2117645, 'PaymentType': 'Debit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'false', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Snowy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'false'},
{'TransactionID': 6077, 'CustomerID': 36, 'Age': 53, 'Gender': 'Other', 'Location': 'City_5', 'StoreID': 55.0, 'OnlineOrderFlag': 'false', 'ProductID': 236, 'ProductName': 'Electronics_Product', 'Category': 'Electronics', 'Quantity': 3, 'UnitPrice': 33.21643834, 'TotalPrice': 99.64931503, 'PaymentType': 'Credit Card', 'PromotionApplied': 'false', 'DiscountAmount': 0, 'GiftWrap': 'true', 'ShippingMethod': 'NaN', 'DeliveryTime': 'NaN', 'Weather': 'Rainy', 'Event': 'Christmas Market', 'CustomerSatisfaction': 2, 'ReturnFlag': 'true'},
]
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.