@onurdatascience

Thanks for watching my video! Want to learn more about Data Analysis? Check out my 40+ video playlist on Data Analysis Tutorials here: https://youtube.com/playlist?list=PLTsu3dft3CWhwPJcaAc-k6a8vAqBx2_0t&si=iMuMQ3-goSlv5LFw

Also I have 10+ video Exploratory Data Analysis Projects playlist: https://youtube.com/playlist?list=PLTsu3dft3CWhLHbHTTzvG3Vx8XDWemG17&si=QC9ONuzt-YSKbeu5

@onurdatascience

Hello everyone, I created a data science discord server. You can ask questions, contribute to the discussions and get help from the text channels this server. Additionally, I'll be sharing my new videos in the server, so you can join and never miss any of the content I publish.Thanks for reading!
https://discord.gg/BaVm6Rt4h8

@onurdatascience

Data creation code:
data = {
    'Customer': ['John', 'Jane', 'Mike', 'Emily', 'Adam', 'Sophia', 'Oliver', 'Emma', 'Daniel', 'Liam'],
    'Product': ['Apple', 'Banana', 'Apple', 'Banana', 'Orange', 'Orange', 'Apple', 'Banana', 'Apple', 'Orange'],
    'Quantity': [2, 3, 1, 4, 2, 1, 3, 2, 1, 4],
    'Revenue': [10, 15, 5, 20, 12, 8, 18, 14, 7, 16]
}