Datasets:
Update pulsar catalog: 4,353 pulsars
Browse files- README.md +5 -4
- data/pulsars.parquet +2 -2
README.md
CHANGED
|
@@ -91,11 +91,12 @@ print(f"{len(binaries):,} in binary systems")
|
|
| 91 |
|
| 92 |
# Period-period derivative diagram (P-Pdot)
|
| 93 |
import matplotlib.pyplot as plt
|
| 94 |
-
valid = df.dropna(subset=["period", "
|
| 95 |
-
valid = valid[valid["
|
| 96 |
-
plt.scatter(valid["period"], valid["
|
| 97 |
plt.xscale("log"); plt.yscale("log")
|
| 98 |
-
plt.xlabel("Period (s)")
|
|
|
|
| 99 |
plt.title("P-Pdot Diagram")
|
| 100 |
```
|
| 101 |
|
|
|
|
| 91 |
|
| 92 |
# Period-period derivative diagram (P-Pdot)
|
| 93 |
import matplotlib.pyplot as plt
|
| 94 |
+
valid = df.dropna(subset=["period", "period_dot"])
|
| 95 |
+
valid = valid[valid["period_dot"] > 0]
|
| 96 |
+
plt.scatter(valid["period"], valid["period_dot"], s=1, alpha=0.5)
|
| 97 |
plt.xscale("log"); plt.yscale("log")
|
| 98 |
+
plt.xlabel("Period (s)")
|
| 99 |
+
plt.ylabel("Period derivative (s/s)")
|
| 100 |
plt.title("P-Pdot Diagram")
|
| 101 |
```
|
| 102 |
|
data/pulsars.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9dac60e72f85f57f0688a58b71da15bceb061a3b536de99cfa9f5f4872dd5ab1
|
| 3 |
+
size 268121
|