[R] How to stop as.integer removing dimenions

Thomas Chesney Thomas.Chesney at nottingham.ac.uk
Thu Feb 23 12:49:03 CET 2017


I have:

net1 <- array(0, dim=c(5,5))

str(net1)
 num [1:5, 1:5] 0 0 0 0 0 0 0 0 0 0 ...

and what I want is:

str(net1)
 int [1:5, 1:5] 0 0 0 0 0 0 0 0 0 0 ...

Neither of the following work:

net1 <- as.integer(net1, drop=FALSE)

net1 <- as.integer(net1, dim=c(5,5))

Can someone please help?

Thank you,

Thomas




This message and any attachment are intended solely for the addressee
and may contain confidential information. If you have received this
message in error, please send it back to me, and immediately delete it. 

Please do not use, copy or disclose the information contained in this
message or in any attachment.  Any views or opinions expressed by the
author of this email do not necessarily reflect the views of the
University of Nottingham.

This message has been checked for viruses but the contents of an
attachment may still contain software viruses which could damage your
computer system, you are advised to perform your own checks. Email
communications with the University of Nottingham may be monitored as
permitted by UK legislation.



More information about the R-help mailing list