You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add row limit setting of data viewer and support Apache Arrow Table (#945)
* add row limit setting of data viewer
* add setting to convert Apache Arrow Table to a data frame and display it in the data viewer
* fix
* remove the show_arrow_table option
* refactoring: functionize the processing to trunc data
* add the overall number of rows to the title
Copy file name to clipboardExpand all lines: package.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1448,6 +1448,11 @@
1448
1448
"default": true,
1449
1449
"markdownDescription": "Emulate the RStudio API for addin support and other {rstudioapi} calls. Changes the option `vsc.rstudioapi` in R. Requires `#r.sessionWatcher#` to be set to `true`."
1450
1450
},
1451
+
"r.session.data.rowLimit": {
1452
+
"type": "integer",
1453
+
"default": 0,
1454
+
"markdownDescription": "The maximum number of rows to be displayed in the data viewer. `0` means no limit. Changes the option `vsc.row_limit` in R. Requires `#r.sessionWatcher#` to be set to `true`."
1455
+
},
1451
1456
"r.session.viewers.viewColumn": {
1452
1457
"type": "object",
1453
1458
"markdownDescription": "Which view column should R-related webviews be displayed? Requires `#r.sessionWatcher#` to be set to `true`.",
0 commit comments