You find below the HTML code of the visualisation. You can copy and paste the code into an existing HTML page. For more information see also ?print.gvis
<!-- ScatterChart generated in R 3.1.0 by googleVis 0.5.2 package --> <!-- Mon May 5 18:53:13 2014 --> <!-- jsHeader --> <script type="text/javascript"> // jsData function gvisDataPoints () { var data = new google.visualization.DataTable(); var datajson = [ [ 1, 1, null, null, null, null, null ], [ 2, null, 2, null, null, null, null ], [ 3, null, null, 3, null, null, null ], [ 4, null, null, null, 4, null, null ], [ 5, null, null, null, null, 5, null ], [ 6, null, null, null, null, null, 6 ] ]; data.addColumn('number','X'); data.addColumn('number','X1'); data.addColumn('number','X2'); data.addColumn('number','X3'); data.addColumn('number','X4'); data.addColumn('number','X5'); data.addColumn('number','X6'); data.addRows(datajson); return(data); } // jsDrawChart function drawChartPoints() { var data = gvisDataPoints(); var options = {}; options["allowHtml"] = true; options["width"] = 500; options["height"] = 350; options["title"] = "Customising points"; options["legend"] = "right"; options["pointSize"] = 30; options["series"] = { 0: { pointShape: 'circle' }, 1: { pointShape: 'triangle' }, 2: { pointShape: 'square' }, 3: { pointShape: 'diamond' }, 4: { pointShape: 'star' }, 5: { pointShape: 'polygon' } }; var chart = new google.visualization.ScatterChart( document.getElementById('Points') ); chart.draw(data,options); } // jsDisplayChart (function() { var pkgs = window.__gvisPackages = window.__gvisPackages || []; var callbacks = window.__gvisCallbacks = window.__gvisCallbacks || []; var chartid = "corechart"; // Manually see if chartid is in pkgs (not all browsers support Array.indexOf) var i, newPackage = true; for (i = 0; newPackage && i < pkgs.length; i++) { if (pkgs[i] === chartid) newPackage = false; } if (newPackage) pkgs.push(chartid); // Add the drawChart function to the global list of callbacks callbacks.push(drawChartPoints); })(); function displayChartPoints() { var pkgs = window.__gvisPackages = window.__gvisPackages || []; var callbacks = window.__gvisCallbacks = window.__gvisCallbacks || []; window.clearTimeout(window.__gvisLoad); // The timeout is set to 100 because otherwise the container div we are // targeting might not be part of the document yet window.__gvisLoad = setTimeout(function() { var pkgCount = pkgs.length; google.load("visualization", "1", { packages:pkgs, callback: function() { if (pkgCount != pkgs.length) { // Race condition where another setTimeout call snuck in after us; if // that call added a package, we must not shift its callback return; } while (callbacks.length > 0) callbacks.shift()(); } }); }, 100); } // jsFooter </script> <!-- jsChart --> <script type="text/javascript" src="https://www.google.com/jsapi?callback=displayChartPoints"></script> <!-- divChart --> <div id="Points" style="width: 500px; height: 350px;"> </div>