소스 검색

Changes calculation of 5G handover.

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

+ 1
- 1
plot_single_transmission_EM9190.py 파일 보기

@@ -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…
취소
저장