Click here to Skip to main content
15,898,371 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Imagine you are analysing a famous group's concert's ticket data,and now you need to:

Based on the dataset, find any insight about number of sale of different zone between males and females, member and non-member in this concert.

Please define the “sale speed” of each zone

dataset:(I don't know how to upload,if you guys want to try to solve I can email it)

What I have tried:

Python
%matplotlib inline
# Import libraries
import pandas as pd
from matplotlib import pyplot as plt
# Load dataset
df = pd.read_csv('girlgeneration(utf8).csv')
# Check dataset
df.head()
df.count()
Posted
Updated 1-Nov-22 7:09am

1 solution

Quote:
if you guys want to try to solve I can email it

Combined with the code that does nothing that the assignment requires, it's pretty clear that you haven't put any effort in, and aren't really planning on doing so.
That's a bad idea: trivial tasks like this are set to get you thinking in the "right way" about turning a specification (the assignment) into code - and skipping the actual "learning how to do it" bit doesn't help you at all in teh long run.

And ... While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.

So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.

If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900