Analyzes sales data for various products, calculates net revenues, applies discounts, and estimates tax impacts, using Pandas in Python for financial insight.
- Revenue Calculation: Calculate net revenue for each product based on sales, retail, and wholesale prices.
- Discount Analysis: Apply a 30% discount to wholesale prices and observe the effect on overall finances.
- Tax Impact: Estimate the financial impact of various tax rates (15%, 20%, 25%) on the net revenue.
- Clone the repository.
- Install required dependencies:
pandas
. - Run the script to perform analysis and generate reports.
print(f'Total net revenue from all sales: ${total_net_revenue}')
print(f'Total sales for food: ${food}')
print(f'Total sales for computers: ${computers}')
print(f'Total sales for books: ${books}')