소스 검색

Changes calculation of 5G handover.

master
langspielplatte 2 년 전
부모
커밋
5dcb2450b3
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      plot_single_transmission_EM9190.py

+ 2
- 2
plot_single_transmission_EM9190.py 파일 보기

@@ -136,7 +136,7 @@ if __name__ == "__main__":

# Plot vertical lines
first = True
lte_handovers = transmission_df["Cell_ID"].diff().dropna()
lte_handovers = transmission_df["Cell_ID"].dropna().diff()
for index, value in lte_handovers.items():
if value > 0:
if first:
@@ -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"].diff().dropna()
nr_handovers = transmission_df["NR5G_Cell_ID"].dropna().diff()
for index, value in nr_handovers.items():
if value > 0:
if first:

Loading…
취소
저장