Skip to content

Commit

Permalink
Merge pull request #19 from UBC-MDS/rnorm
Browse files Browse the repository at this point in the history
added pass line at the end of rnorm.py as future code placeholder
  • Loading branch information
OliviaWan56 authored Jan 9, 2025
2 parents f702ac3 + 8db232e commit f35db66
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pystats/rnorm.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def rnorm(n, mean=0, sd=1):
The mean value of the normal distribution. Default is 0.
sd : float, optional
The standard deviation of the normal distribution. Default is 1.
Returns
-------
numpy.ndarray
Expand All @@ -22,4 +22,5 @@ def rnorm(n, mean=0, sd=1):
-------
>>> rnorm(2, mean=5, sd=2)
array([6.3245, 4.5983])
"""
"""
pass

0 comments on commit f35db66

Please sign in to comment.