我有ubuntu 14.04.3并安装了R 3.2.2 我有以下脚本
t0 <- .100 # Natural Process Time (hr) - site busyness
mf <- 100000 # MTTF (hr)
mr <- 8 # MTTR (hr)
A <- mf/(mf+mr) # Availability
tec <- t0/A # Effective Process Time (failures only)
但是当我将它粘贴到R控制台时,会产生一些像
这样的输出> t0 <- .100# Natural Process Time (hr) - site busyness
> mf <- 100000# MTTF (hr)
> mr <- 8# MTTR (hr)
>
> A <- mf/(mf+mr)# Availability
> tec <- t0/A
t0/A t0/AirPassengers t0/Arith t0/ARMAtoMA
t0/AIC t0/Arg t0/ARMAacf t0/Axis
> tec <- t0/A
t0/A t0/AirPassengers t0/Arith t0/ARMAtoMA
t0/AIC t0/Arg t0/ARMAacf t0/Axis
> tec <- t0/A# Effective Process Time (failures only)
这些可能是什么原因?提前谢谢。