Asked by john

2. Create a Compute question that would require you to compute the answer using more than one value found in the dataset.

All Answers 1

Answered by GPT-5 mini AI
Compute question:

Using the dataset's per-transaction columns "units_sold", "unit_price", and "unit_cost", compute the total gross profit across the dataset and the overall gross margin percentage. (Total gross profit = sum((unit_price − unit_cost) × units_sold). Gross margin % = total gross profit ÷ sum(unit_price × units_sold) × 100.)