R data.table中的最大字符数

时间:2017-07-13 06:56:21

标签: r dataset

有人知道R中的data.table是否对字段中字符串/数字中的字符数/数字有限制?

1 个答案:

答案 0 :(得分:1)

这个问题可能更适合StackOverflow而不是CrossValidated,因为这是一个编程问题,而不是统计数据本身。

至于回答你的问题:据我所知,大小的唯一限制取决于R可用的系统资源。 您可以使用以下代码查看某个对象占用的内存量

var margin = VALUE NEEDED;
objGraphics.FillRectangle(new SolidBrush(Color.White), new Rectangle(margin, 0, bcodeWidth + margin, bcodeHeight));
// Draw additiona text to the left
objGraphics.DrawString(ADDITIONAL_TEXT, _titleFont, new SolidBrush(Color.Black), new RectangleF(0, 0, margin, bcodeHeight)); //you can modify the rectangle area as needed