đź“Ł Announcing Plotly.R 4.9.2

Announcing Plotly.R 4.9.2

I’m excited to announce that Plotly.R 4.9.2 is now available for download via devtools and CRAN. For up-to-date installation instructions, please see our Getting Started documentation page.

What’s New in Plotly.R 4.9.2?

Powered by Plotly.js 1.52, perfect for Dash For R 0.3.1

This release of Plotly.R inherits all of the improvements to the underlying JavaScript library that powers it. The full Plotly.js 1.52.x changelog contains more details about what changed under the hood.

The version of Plotly.js that Plotly.R 4.9.2 is built on is the same one that’s bundled with the recently-released Dash For R 0.3.1, so we recommend that if you’re a Dash For R user you upgrade both Dash For R and Plotly.R to their latest versions to get the full benefit of all of these libraries working together.

Legend Titles

We’ve finally implemented a long-requested feature: first-class legend titles! These are configurable under layout.legend.title, as one would expect.

Check out the image below to see how much nicer this makes everything look.

Improvements to Choropleth Maps

With the release of Plotly For R 4.9.2, a new geojson argument has been added to outline choropleth map traces. Previously, this argument was only available on choropleth maps made using our tile-based Mapbox choropleth map trace type.

This means that you can now supply your own geometry information to non-tile-map choropleth maps, instead of relying solely on Plotly’s built-in country and state maps or using the Mapbox API service.

Some other new mapping features include:

  • Both outline and tile-based maps have a new featureidkey attribute to let you use GeoJSON objects whose identifiers are in the properties object of a feature, rather than always and only using the id field.

  • New fitbounds attribute in layout.geo to make it easier to position these new choropleth maps.

  • New visible attribute in layout.geo to make it easier to style these new choropleth maps.

  • New showlegend attributes on choropleth traces, which enable the use of discrete color on choropleth maps 1. This was added to the Mapbox choropleth as well.

What does this all mean? It means you can now make any of this map with a single chained R statement!

Treemap traces

Plotly For R 4.9.2 introduces a new treemap trace type, which is well suited for visualizing a ratio across a hierarchy or a set of variables.

alt text

Uniform Text & Text Orientation

By default, when displaying text with bar-like traces (bar, funnel and waterfall charts) or part-of-whole traces like pie and funnel-area charts as well as sunbursts and treemaps, Plotly.R will scale the text per bar or per sector so as to make each text label fit. This is helpful for seeing all text labels but can result in some odd or distracting variations in text sizes. With the new layout.uniformtext options, you can now force the text to be the same size across similar traces, so that all the bar labels or all the sunburst labels end up having the same font-size.

In terms of text orientation, by default Plotly.R will try various text orientations within a pie or sunburst sector to see how it can make the text biggest/most-legible. Again this can be distracting or unappealing in certain cases, so the new insidetextorientation attribute lets you specify whether you want your text to be always horizontal, radial or tangential.

Together these two attributes can be used to create very attractive, regular-looking bar, waterfall, funnel, pie, sunburst and treemap charts!

New Box Plot Options

There are many ways to calculate the quartiles of a dataset, and now you can choose among three different quartile-calculation algorithms when using Plotly.R box plots! To quote our Figure Reference documentation for the new quartilemethod attribute:

  • Sets the method used to compute the sample’s Q1 and Q3 quartiles. The “linear” method uses the 25th percentile for Q1 and 75th percentile for Q3 as computed using method #10 (listed on http://www.amstat.org/publications/jse/v14n3/langford.html). The “exclusive” method uses the median to divide the ordered dataset into two halves if the sample is odd, it does not include the median in either half - Q1 is then the median of the lower half and Q3 the median of the upper half. The “inclusive” method also uses the median to divide the ordered dataset into two halves but if the sample is odd, it includes the median in both halves - Q1 is then the median of the lower half and Q3 the median of the upper half.

Here is a visualization of the three methods on the same dataset of integers from 1 to 5:

In addition to these enhancements, it is now possible to explicitly specify all the parameters of a box plot, for when you want to do the quartile and other calculations externally to the visualization.

These were two sponsored features and we heartily thank our sponsors for supporting open-source software development and allowing us to make these features available to everyone else in the world for free :heart:. If your organization has a software budget, reach out to us to fund your favorite feature requests.

Image Traces

You can now explore multichannel image data in interactive charts, for applications such as satellite imaging, medical imaging, quality inspection, building training sets for machine learning models, etc.

Documentation Rebranding and New Search Functionality

Beyond shipping new features, our Graphing Library team has been hard at work improving the Plotly.R documentation:

  • We created a separate GitHub repository at https://github.com/plotly/plotly.r-docs to version control Plotly’s R and ggplot2 documentation examples, which are written in RMarkdown. Contributing to these docs is as simple as making a pull request in that repo!

  • Every R example figure now gets executed at build time, decreasing the chance that a user will come across a code example which doesn’t work.

  • As you browse our documentation today, you might notice the fresh new colors and fonts, as well as the switch from the old plot.ly domain name to the new plotly.com domain name. We love our new branding and hope that you do too!

  • This refresh is not just skin-deep, though: we’ve also reworked our documentation search system. The search box is now available on every page, in the left-hand sidebar, and search queries are now run against both the tutorial examples and the Figure Reference page, to make sure you can quickly find what you’re looking for! We’ve also tuned the Figure Reference search result ordering, to ensure the most useful hits show up higher in the rankings.

Get it now!

To sum up: Plotly.R 4.9.2 is out and if you’re excited about any of the above features, head on over to our Getting Started documentation page for full installation instructions.

1 Like