I've created a frequency table in R with the fdth package using this code
 fdt(x, breaks = "Sturges")
The specific result was:
Class limits         f   rf   rf(%)    cf  cf(%)
 [-15.907,-11.817)   12 0.00  0.10    12   0.10
 [-11.817,-7.7265)    8 0.00  0.07    20   0.16
  [-7.7265,-3.636)    6 0.00  0.05    26   0.21
   [-3.636,0.4545)   70 0.01  0.58    96   0.79
    [0.4545,4.545)   58 0.00  0.48   154   1.27
    [4.545,8.6355)   91 0.01  0.75   245   2.01
   [8.6355,12.726)  311 0.03  2.55   556   4.57
   [12.726,16.817)  648 0.05  5.32  1204   9.89
   [16.817,20.907)  857 0.07  7.04  2061  16.93
   [20.907,24.998) 1136 0.09  9.33  3197  26.26
   [24.998,29.088) 1295 0.11 10.64  4492  36.90
   [29.088,33.179) 1661 0.14 13.64  6153  50.55
   [33.179,37.269) 2146 0.18 17.63  8299  68.18
    [37.269,41.36) 2525 0.21 20.74 10824  88.92
     [41.36,45.45) 1349 0.11 11.08 12173 100.00
It was given as a list:
> class(x)
[1] "fdt.multiple" "fdt"          "list"  
I need to convert it into a data frame object, so I can have a table. How can I do it?
I'm a beginner at using R :(
 
    