Monday, 15 February 2010

How to view the omitted output in R software? -


In some circumstances the software intentionally leaves some results with the "..." sign, for example, if any one X Using the bar chart or qcc package R is pulling the R chart, then only shows the meaning of the first sample and shows the "..." sign is there any way to see the whole output?

Example:

  #R code has been described below the Library (qcc) data = matrix (c (32, 28, 39, 50, 42, 50, 44 (Data, type = 22, 37, 32, 52, 42, 45, 29, 52, 35, 42, 40, 28, 31, 34, 21, 35, 44), 8, 3, bio = TRUE) "Xbar") # If we run it then the output will be displayed below 11 list call: language qcc (data = data type = "xbar") $ type: chr "xbar" $ Data.name: chr "data" $ data : Number [1: 8, 1: 3] 32 28 39 50. . $ Figures: nominated number [1: 8] 37 33.3 39.7 41. .  

How can I see full output without "..." symbols?

You need to save the result of the call to qcc . You will then see that the result is of the class qcc qcc objects print.qcc actually the call method for call str , Which is responsible for shortening the result. You can display the entire result with the example unclass . . / html>

No comments:

Post a Comment