Browse Source

Changes calculation of 5G handover.

master
langspielplatte 2 years ago
parent
commit
e5bea755ba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      plot_single_transmission_EM9190.py

+ 1
- 1
plot_single_transmission_EM9190.py View File

@@ -146,7 +146,7 @@ if __name__ == "__main__":
ax00.axvline(index, ymin=0, ymax=1, color="skyblue")

first = True
nr_handovers = transmission_df["NR5G_Cell_ID"].dropna().diff()
nr_handovers = transmission_df["NR5G_Cell_ID"].replace(0, np.NaN).dropna().diff()
for index, value in nr_handovers.items():
if value > 0:
if first:

Loading…
Cancel
Save