소스 검색

Bugfix, plot ack_rtt

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

+ 5
- 6
plot_transmission_timeline.py 파일 보기

@@ -155,7 +155,11 @@ if __name__ == "__main__":
lambda x: ((x * 8) / args.interval) / 10**6
)

# remove all not needed columns
# set meta values and remove all not needed columns
cc_algo = transmission_df["congestion_control"].iloc[0]
cc_algo = cc_algo.upper()
transmission_direction = transmission_df["direction"].iloc[0]

transmission_df = transmission_df.filter(["goodput", "datetime", "ack_rtt"])

# read serial csv
@@ -172,11 +176,6 @@ if __name__ == "__main__":
left_index=True,
)

cc_algo = transmission_df["congestion_control"].iloc[0]
cc_algo = cc_algo.upper()

transmission_direction = transmission_df["direction"].iloc[0]

# transmission timeline

scaley = 1.5

Loading…
취소
저장