I am asking about this feature:
df.sample(frac=0.5, replace=True, random_state=1)
available as an option upon sampling a DataFrame.
On the pandas reference, it says it is to:
Sample with or without replacement.
What does this mean and what are some uses for this?