Hello sir,
Actually, I 'm novice to R programming and currently working on prediction part for CPU usage log file (attached with mail). My task is to predict next hour CPU usage by taking "Time" as response and %user %nice %system %iowait %steal %idle, either all or one as predictor(s). Please help me out. I have attached CPU usage log file with mail. Please find attachment. Thank You in advance. ################################################ This code is not working ################################# cpu <- read.table(file = "D:/Swapnil/Data/cpu.txt", header = FALSE, col.names = c("Time","CPU","user","Nice","System","Iowait","Steal","Idle") ) #cpu user <- rep(cpu$user) Time <- c(cpu$Time) Time Time <- c(cpu$Time) user <- rep(cpu$user) user plot(cpu$user, xaxt="n", ylab="USER", xlab="") axis(1, labels=paste(cpu$user), at=1:11) cor(user, Time) fit <- lm(Time ~ user) fit attributes(fit) fit$coefficients residuals(fit) summary(fit) plot(fit) #prdiction part Time2hr <- data.frame(user=2.00) user2hr <-predict(fit, newdata=Time2hr) user2hr <-predict(fit, newdata=Time2hr) style <- c(rep(1,11)) plot(c(Time, user2hr), xaxt="n", ylab="TIME", xlab="", pch=style, col=style) axis(1, at=1:11,labels=c(paste(cpu$user,sep="Q"), "2011Q1", "2011Q2", "2011Q3", ######################################################################### Regards, Swapnil Khobragade Larsen & Toubro Infotech Ltd. Bldg. No.5&6, 1st Floor, Airoli, Navi Mumbai - 400708. e-mail ID: swapnil.khobrag...@lntinfotech.com Tel: @@@@@@@(Direct) | +91 9503043368 (M) The contents of this e-mail and any attachment(s) may contain confidential or privileged information for the intended recipient(s). Unintended recipients are prohibited from taking action on the basis of information in this e-mail and using or disseminating the information, and must notify the sender and delete it from their system. L&T Infotech will not accept responsibility or liability for the accuracy or completeness of, or the presence of any virus or disabling code in this e-mail"
Linux 3.2.0-23-generic (cldx-1311-1183) 02/25/14 _x86_64_ (2 CPU) 20:47:14 CPU %user %nice %system %iowait %steal %idle 20:47:15 all 5.05 0.00 2.02 0.51 0.00 92.42 20:47:16 all 4.02 0.00 2.01 0.00 0.00 93.97 20:47:17 all 5.61 0.00 2.55 0.00 0.00 91.84 20:47:18 all 3.55 0.00 1.52 0.00 0.00 94.92 20:47:19 all 5.58 0.00 2.03 0.00 0.00 92.39 20:47:20 all 2.05 0.00 3.08 0.00 0.00 94.87 20:47:21 all 3.55 0.00 1.52 0.00 0.00 94.92 20:47:22 all 5.64 0.00 2.56 0.00 0.00 91.79 20:47:23 all 3.02 0.00 2.51 0.00 0.00 94.47 20:47:24 all 3.08 0.00 2.05 0.00 0.00 94.87 20:47:25 all 4.06 0.00 2.54 0.00 0.00 93.40 20:47:26 all 4.06 0.00 1.52 0.00 0.00 94.42 21:47:12 all 13.64 0.00 3.54 0.00 0.00 82.83 21:47:13 all 6.19 0.00 2.06 0.00 0.00 91.75 21:47:14 all 6.19 0.00 2.58 0.00 0.00 91.24 Average: all 5.71 0.00 2.31 0.41 0.00 91.57
______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.