'adding percent calculation to dataframe

I would like to create a table with frequency counts and percentages. I have the frequency counts and calculated the percentages. When I try to add it to the dataframe, it's doesn't add the calculations to the dataframe. The code:

fpanel <- rename(count(surveydata, panel), Freq = n)
fpanel$proportion <- fpanel$Freq / dim(surveydata)[1]
fresponder <- rename(count(surveydata, panel, responder), Freq = n)
fresponder$percent <- c(fresponder[1,3] / fpanel[1,2], 
                        fresponder[2,3] / fpanel[1,2],
                        fresponder[3,3] / fpanel[2,2],
                        fresponder[4,3] / fpanel[2,2],
                        fresponder[5,3] / fpanel[3,2],
                        fresponder[6,3] / fpanel[3,2],
                        fresponder[7,3] / fpanel[4,2],
                        fresponder[8,3] / fpanel[4,2])

And the results:

enter image description here

The calculations are correct without adding to the dataframe but when I add it, I get "<dbl 1>". What kind of error is this and how can I fix it?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source