Can we implement web/spider graph in R. Can anyone help me with this
Sure — there are a bunch of different options (this is not a complete list!):
- Plotly does radar charts: https://plot.ly/r/radar-chart/
- The
radarchart
package implements the ones from chart.js: https://github.com/MangoTheCat/radarchart - You could make your own htmlwidget using any other JavaScript plotting library out there
Getting away from JavaScript-based charts:
- There’s a
ggplot2
extension: https://www.ggplot2-exts.org/ggradar.html - The
fmsb
package does it with base graphics (super minimal dependencies!): https://www.r-graph-gallery.com/spider-or-radar-chart/
(This post also has a nice discussion of some alternative ways of plotting radar chart type data: https://www.data-to-viz.com/caveat/spider.html)
1 Like