Answered step by step
Verified Expert Solution
Question
1 Approved Answer
17) The network analysts assume that there is a linear relationship between the number of users accessing. the network and the load of network
17) The network analysts assume that there is a linear relationship between the number of users accessing. the network and the load of network traffic. Write a Python program for network traffic prediction using least square linear regression. (10 marks) The sample dataset "data.cv" is given below. No. of Users 12 23 41 65 80 Network Traffic Load 200 410 500 NaN 700 800 100 The Python program should include the following. a) Fill NaN values using the 'median' statistical method in the given dataset. b) Plot a line plot for the data.csv (X-axis can be No. of Users and Y-axis can be Network Traffic Load) c) Plot a scatter diagram of Network Traffic Load against No. of Users d) Compute the covariance and correlation for the given dataset. e) Calculate the equation of the least squares regression line of Network Traffic Load on No. of Users
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started