Site icon R-bloggers

A pick of the best R packages for interactive plot and visualisation (2/2)

[This article was first published on Enhance Data Science, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

In the first part of A pick of the best R packages for interactive plot and visualization, we saw the best packages to do interactive plot in R. Now, let’s see what are the best packages for interactive visualizations.

While plots tend are representing ‘classic’ data. These plots have an x-axis a y-axis and one or two other variables represented as colors, size or symbols. Visualizations are to represent data that are not structured in a ‘regular’ way, for instance:

Network and graph data

# Load data
data(MisLinks)
data(MisNodes)
# Plot
forceNetwork(Links = MisLinks, Nodes = MisNodes,
            Source = "source", Target = "target",
            Value = "value", NodeID = "name",
            Group = "group", opacity = 0.8)

 

Sequential data

By sequential data, we mean a sequence of different actions, page visited or a conversion funnel for instance.

Hierarchical data

Hierarchical data are data structured like nested lists (basically trees).

Textual data

Textual data are often used to do text analysis or sentiment analysis.

If you like this post, you can follow our newsletter:

Thank you for following us!

The post A pick of the best R packages for interactive plot and visualisation (2/2) appeared first on Enhance Data Science.

To leave a comment for the author, please follow the link and comment on their blog: Enhance Data Science.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.