#!/bin/sh
# See https://bugs.debian.org/1061828

LC_ALL=C R --no-save <<EOT
library(plotly)
plot_ly(data = iris, x = ~Sepal.Length, y = ~Petal.Length, type = "scatter", mode = "markers")
EOT
