我有一个包含1500万观察结果的数据库,我需要在R中提取样本以进行一些分析,这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<script src="https://unpkg.com/glfx-es6/dist/glfx-es6.min.js">
</script>
</head>
<body>
<img id="image" src="lenna.png">
<script>
window.onload = function () {
// try to create a WebGL canvas (will fail if WebGL isn't supported)
try {
var canvas = fx.canvas();
} catch (e) {
alert(e);
return;
}
// convert the image to a texture
var image = document.getElementById('image');
var texture = canvas.texture(image);
// apply the ink filter
canvas.draw(texture).ink(0.25).update();
};
</script>
</body>
</html>
问题是因为数据库太大而无法像这样工作。有没有其他想法可以实现这一目标?...谢谢