ComeçarComece de graça

Creating a probability distribution

A new restaurant opened a few months ago, and the restaurant's management wants to optimize its seating space based on the size of the groups that come most often. On one night, there are 10 groups of people waiting to be seated at the restaurant, but instead of being called in the order they arrived, they will be called randomly. In this exercise, you'll investigate the probability of groups of different sizes getting picked first. Data on each of the ten groups is contained in the restaurant_groups DataFrame.

Remember that expected value can be calculated by multiplying each possible outcome with its corresponding probability and taking the sum. The restaurant_groups data is available. pandas is loaded as pd, numpy is loaded as np, and matplotlib.pyplot is loaded as plt.

Este exercício faz parte do curso

Introduction to Statistics in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Create a histogram of restaurant_groups and show plot
restaurant_groups['group_size'].____
____
Editar e executar o código