This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Visualize points on the 3-simplex (eg, the parameters of a | |
| 3-dimensional multinomial distributions) as a scatter plot | |
| contained within a 2D triangle. | |
| David Andrzejewski (david.andrzej@gmail.com) | |
| """ | |
| import numpy as NP | |
| import matplotlib.pyplot as P | |
| import matplotlib.ticker as MT |
NewerOlder