Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuwq0 committed Sep 12, 2024
1 parent 5db026f commit 881bf2b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions scripts/plot_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,10 @@ def parse_args():
s=min(2, size_factor / len(adloc_dt_catalog)),
alpha=1.0,
linewidth=0,
label=f"AdLoc_DT: {len(adloc_dt_catalog)}",
label=f"AdLoc (CT): {len(adloc_dt_catalog)}",
)
# ax[1, 0].legend()
ax[1, 0].set_title(f"AdLoc_DT: {len(adloc_dt_catalog)}")
ax[1, 0].set_title(f"AdLoc (CT): {len(adloc_dt_catalog)}")

if adloc_dtcc_exist and (len(adloc_dtcc_catalog) > 0):
ax[1, 1].scatter(
Expand All @@ -395,10 +395,10 @@ def parse_args():
s=min(2, size_factor / len(adloc_dtcc_catalog)),
alpha=1.0,
linewidth=0,
label=f"AdLoc_DTCC: {len(adloc_dtcc_catalog)}",
label=f"AdLoc (CC): {len(adloc_dtcc_catalog)}",
)
# ax[1, 1].legend()
ax[1, 1].set_title(f"AdLoc_DTCC: {len(adloc_dtcc_catalog)}")
ax[1, 1].set_title(f"AdLoc (CC): {len(adloc_dtcc_catalog)}")


if hypodd_ct_exist and (len(catalog_ct_hypodd) > 0):
Expand Down Expand Up @@ -527,10 +527,10 @@ def parse_args():
vmin=cmin,
vmax=cmax,
cmap="viridis_r",
label=f"AdLoc_DT: {len(adloc_dt_catalog)}",
label=f"AdLoc (CT): {len(adloc_dt_catalog)}",
)
# ax[1, 0].legend()
ax[1, 0].set_title(f"AdLoc_DT: {len(adloc_dt_catalog)}")
ax[1, 0].set_title(f"AdLoc (CT): {len(adloc_dt_catalog)}")
ax[1, 0].set_xlim(xlim)
ax[1, 0].set_ylim(ylim)

Expand All @@ -545,10 +545,10 @@ def parse_args():
vmin=cmin,
vmax=cmax,
cmap="viridis_r",
label=f"AdLoc_DTCC: {len(adloc_dtcc_catalog)}",
label=f"AdLoc (CC): {len(adloc_dtcc_catalog)}",
)
# ax[1, 1].legend()
ax[1, 1].set_title(f"AdLoc_DTCC: {len(adloc_dtcc_catalog)}")
ax[1, 1].set_title(f"AdLoc (CC): {len(adloc_dtcc_catalog)}")
ax[1, 1].set_xlim(xlim)
ax[1, 1].set_ylim(ylim)

Expand Down Expand Up @@ -698,10 +698,10 @@ def parse_args():
vmin=cmin,
vmax=cmax,
cmap="viridis_r",
label=f"AdLoc_DT: {len(adloc_dt_catalog)}",
label=f"AdLoc (CT): {len(adloc_dt_catalog)}",
)
# ax[1, 0].legend()
ax[1, 0].set_title(f"AdLoc_DT: {len(adloc_dt_catalog)}")
ax[1, 0].set_title(f"AdLoc (CT): {len(adloc_dt_catalog)}")
ax[1, 0].set_xlim(xlim)
ax[1, 0].set_ylim(ylim)

Expand All @@ -716,10 +716,10 @@ def parse_args():
vmin=cmin,
vmax=cmax,
cmap="viridis_r",
label=f"AdLoc_DTCC: {len(adloc_dtcc_catalog)}",
label=f"AdLoc (CC): {len(adloc_dtcc_catalog)}",
)
# ax[1, 1].legend()
ax[1, 1].set_title(f"AdLoc_DTCC: {len(adloc_dtcc_catalog)}")
ax[1, 1].set_title(f"AdLoc (CC): {len(adloc_dtcc_catalog)}")
ax[1, 1].set_xlim(xlim)
ax[1, 1].set_ylim(ylim)

Expand Down

0 comments on commit 881bf2b

Please sign in to comment.