Aquest és un codi fet amb la biblioteca lightkurve de python de les estrelles HD 143454 que esclatarà abans de setembre de 2024 i la estrella KIC 8462852 que té la brillantor més rara de l'univers.
!pip install lightkurve
import lightkurve as lk
# Descarregar les dades de Kepler per l'estrella Tabby
target = "HD 143454"
search_result = lk.search_lightcurvefile(target)
# Baixar els fitxers de corba de llum
lc_collection = search_result.download_all()
# Unir totes les corbes de llum en una sola
lc = lc_collection.stitch()
# Visualitzar la corba de llum
lc.plot()
Here's how you can make bold and italic text.
Here's how you can add an image:
Here's how to make a list:
- First thing
- Second thing
- Third thing
To learn more HTML/CSS, check out these tutorials!