I have some data as
data={{257.3`, 493.7`}, {43.666666666666664`,490.5`}, {111.91176470588235`,461.20588235294116`},{345.2142857142857`,460.5`}, {420.88461538461536`, 436.34615384615387`}, {318.1`,408.46`}, {277.`,400.7`}, {273.5`, 383.`}, {444.`,381.5`}, {208.28571428571428`,379.7857142857143`}, {510.9166666666667`,367.66666666666663`}, {584.7`, 366.`}, {301.125`, 355.5`}, {116.875`, 352.75`}, {423.14285714285717`,340.2142857142857`}, {360.2142857142857`,340.07142857142856`}, {234.7`, 318.1`}, {287.25`,303.25`}, {474.65`, 301.35`}, {110.71428571428571`, 299.5`}, {440.95714285714286`, 297.3`}, {536.4545454545455`,277.72727272727275`}, {321.`, 268.2142857142857`}, {439.3125`,249.875`}, {306.42857142857144`,242.78571428571428`}, {505.42857142857144`,242.10714285714286`}, {603.5370370370371`,217.3888888888889`}, {618.0909090909091`, 212.86363636363637`}, {248.5`, 212.875`}, {110.07894736842105`, 199.60526315789474`}, {384.7857142857143`, 188.`}, {572.8333333333334`,148.66666666666669`}, {33.`, 133.`}, {447.31481481481484`, 129.24074074074076`}, {206.33333333333334`, 116.41666666666669`}, {399.1764705882353`, 98.35294117647061`}, {33.3`,60.366666666666674`}, {216.875`, 44.`}, {328.77272727272725`, 40.31818181818181`}, {435.5`,38.5`}, {58.88461538461539`,37.11538461538464`}, {464.44117647058823`,23.323529411764696`}, {534.`, 1.375`}}
I would like to plot the Voronoi diagram of these data, so we have
Show[HighlightMesh[
VoronoiMesh[data], {Style[2, White], Style[1, Black]}],
Graphics[{PointSize[Medium], Red, Point[data]}], Frame -> False,
PlotRange -> Full]
which results in
I would like to calculate the number of sides of each polygon and also to calculate the area of them. But, before doing these stuff, how can I remove the unbounded polygons and only keep and work with the bounded ones?