SPLOM chart error

I have been trying to replicate the code from the below for iris dataset but i always receive the below error. Please help. I also created my api key and setting sysenv before running below code.
Source: https://plot.ly/r/splom/

Error at line (chart_link): Trace type must be one of the following: ‘scatter’, ‘box’, ‘bar’, ‘heatmap’, ‘histogram’, ‘histogram2d’, ‘histogram2dcontour’, ‘pie’, ‘contour’, ‘scatterternary’, ‘sankey’, ‘scatter3d’, ‘surface’, ‘mesh3d’, ‘scattergeo’, ‘choropleth’, ‘scattergl’, ‘pointcloud’, ‘heatmapgl’, ‘parcoords’, ‘scattermapbox’, ‘carpet’, ‘scattercarpet’, ‘contourcarpet’, ‘ohlc’, ‘candlestick’, ‘area’

library(plotly)
packageVersion(‘plotly’)
df <- read.csv(‘https://raw.githubusercontent.com/plotly/datasets/master/iris-data.csv’)
pl_colorscale=list(c(0.0, ‘#19d3f3’),
c(0.333, ‘#19d3f3’),
c(0.333, ‘#e763fa’),
c(0.666, ‘#e763fa’),
c(0.666, ‘#636efa’),
c(1, ‘#636efa’))
axis = list(showline=FALSE,
zeroline=FALSE,
gridcolor=’#ffff’,
ticklen=4)

p <- df %>%
plot_ly() %>%
add_trace(
type = ‘splom’,
dimensions = list(
list(label=‘sepal length’, values=~sepal.length),
list(label=‘sepal width’, values=~sepal.width),
list(label=‘petal length’, values=~petal.length),
list(label=‘petal width’, values=~petal.width)
),
text=~class,
marker = list(
color = as.integer(df$class),
colorscale = pl_colorscale,
size = 7,
line = list(
width = 1,
color = ‘rgb(230,230,230)’
)
)
) %>%
layout(
title= ‘Iris Data set’,
hovermode=‘closest’,
dragmode= ‘select’,
plot_bgcolor=‘rgba(240,240,240, 0.95)’,
xaxis=list(domain=NULL, showline=F, zeroline=F, gridcolor=’#ffff’, ticklen=4),
yaxis=list(domain=NULL, showline=F, zeroline=F, gridcolor=’#ffff’, ticklen=4),
xaxis2=axis,
xaxis3=axis,
xaxis4=axis,
yaxis2=axis,
yaxis3=axis,
yaxis4=axis
)

Create a shareable link to your chart

chart_link = api_create(p, filename=“splom-iris”)
chart_link

Hey @fazalbasha

Try updating Plotly: devtools::install_github("ropensci/plotly")

Also, this ought to be labelled R not plotly.js.

Tried the recommendation but still facing errors. Also updated the label to R thanks for pointing out.
Error: package or namespace load failed for ‘plotly’ in get(Info[i, 1], envir = env):
lazy-load database ‘/Library/Frameworks/R.framework/Versions/3.5/Resources/library/ggplot2/R/ggplot2.rdb’ is corrupt
In addition: Warning message:
In get(Info[i, 1], envir = env) : internal error -3 in R_decompress1

This is now resolved. After installing I had to restart to see it work. Thanks