Skip to content

Commit

Permalink
1. Correction normal variance
Browse files Browse the repository at this point in the history
2. Typos correction
  • Loading branch information
sebastianherreramonterrosa committed Jan 5, 2025
1 parent 21ae16c commit 6a919e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pip install phitter
| **Fit Continuous** | <a target="_blank" href="https://colab.research.google.com/github/phitterio/phitter-kernel/blob/main/examples/fit_continuous_ncdb.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a> |
| **Fit Discrete** | <a target="_blank" href="https://colab.research.google.com/github/phitterio/phitter-kernel/blob/main/examples/fit_discrete_galton_board.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a> |
| **Fit Accelerate [Sample>100K]** | <a target="_blank" href="https://colab.research.google.com/github/phitterio/phitter-kernel/blob/main/examples/fit_accelerate.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a> |
| **Fit Specific Disribution** | <a target="_blank" href="https://colab.research.google.com/github/phitterio/phitter-kernel/blob/main/examples/fit_specefic_distribution.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a> |
| **Fit Specific Distribution** | <a target="_blank" href="https://colab.research.google.com/github/phitterio/phitter-kernel/blob/main/examples/fit_specific_distribution.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a> |
| **Working Distribution** | <a target="_blank" href="https://colab.research.google.com/github/phitterio/phitter-kernel/blob/main/examples/working_distribution.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a> |

### **_2. Simulation Notebook's Tutorials_**
Expand Down
2 changes: 1 addition & 1 deletion phitter/continuous/continuous_distributions/normal.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def variance(self) -> float:
"""
Parametric variance
"""
return self.sigma * 3
return self.sigma ** 2

@property
def standard_deviation(self) -> float:
Expand Down

0 comments on commit 6a919e5

Please sign in to comment.