Hi @dodo06,
Congratulations on finishing your first project. Your work looks good. Though I can see a few places where you can do things slightly differently.
It would be great if the markdown cells are used to its full advantage with Headings, subheading, lists etc for better readability. It makes it easier for others to quickly run through your project and still get complete idea.
Another point I have seen is with the print()
function. You can actually include multiple elements inside the print() function. Maybe you have used separate line for a better aesthetic of the code.
print('App Store genre frequency')
print(app_store_genre_frequency)
print('\n')
You can combine these three lines into one
print("App Store genre frequency \n" , app_store_genre_frequency, "\n")
The last point is that you have done a good observation of the inferences we have made from our analysis. So if you could conclude your observations in accordance with the aim of your project, that would be great. Here in our example, we are trying to find which is the most profitable app segment. So we have seen the ‘Game’ category has many apps. It either means, we can still make it work in that category or there is a high competition to survive.
Depending on the strengths of your client/company you are working for you have to make a conclusion on what kind of app you are going to suggest to them after the analysis. So if you can work a bit more on your structure of the project, it would be super.
Good luck with the next project. Happy learning.