We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef1d402 commit c082984Copy full SHA for c082984
README.md
@@ -41,6 +41,7 @@ Install the requirments for predicing in the current Conda environment:
41
42
```python
43
from deepexo.rockyplanet import RockyPlanet
44
+
45
# Keplar-78b
46
M = 1.77 # mass in Earth masses
47
R = 1.228 # radius in Earth radii
@@ -55,7 +56,12 @@ planet_params = [
55
56
]
57
rp = RockyPlanet()
58
pred = rp.predict(planet_params)
-rp.plot(pred, save=True, filename="pred.png")
59
+rp.plot(pred,
60
+ save=True, # save to file
61
+ filename="pred.png" # save to current directory, filename is pred.png, you can change the extension to eps
62
+ # or pdf
63
+ )
64
65
```
66
## References
67
[https://www.science.org/doi/10.1126/science.abg8794](https://www.science.org/doi/10.1126/science.abg8794)
0 commit comments