You are required to present a comparative analysis of the sales data of five different products over the last year. What would be the most effective way to visualize this data?
Suppose you have a DataFrame df with columns Name, Age, Gender, and Salary. Which of the following code snippets will filter the DataFrame to include only rows where Age is more than 25 and Salary is less than 50000, and also sort the resulting DataFrame by Name?
You have a dataset of a retail company's sales transactions, which includes details like customer ID, transaction amount, transaction date, and store ID. You're tasked with summarizing monthly revenue for each store. What would be the most appropriate data aggregation technique?