简体   繁体   中英

Displaying table values by proportion in R

I have a table in R , and I would like to change each row so that the numbers come up proportionally as opposed to the total quantity.

For example, if my first row is 2,2,0 I want to make it .5,.5,0

Similarly, if a row is 4,15,1 I want to make it .2,.75,.05

Is there a way to do this to the entire table at once? I know this is probably pretty easy but I've been working on it for a long time.

You can try this:

# sample data
a <- rbind(c(2,2,0), c(4,15,1))


# solution
a / apply(a, 1, sum)
#  [,1] [,2] [,3]
#b  0.5 0.50 0.00
#a  0.2 0.75 0.05

If your data is a matrix,

my_data = matrix(rpois(12, lambda = 5), nrow = 4)

then this is one way to do it:

my_data / rowSums(my_data)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM