Entering edit mode
2.5 years ago
3095916029
•
0
I have a dataframe data3_back
, and I want to sum value which have same "bp".
So I use this
> data3_back1<-count(data3_back,"bp")
But the output "freq" is int rather than numeric.
Is there anyway to handle it? Or is there any other way to achieve my purpose?
Please do not post the images of the data. try
as.numeric
Thank you for your reply. I make a silly mistake and I misunderstand the function of "count".