RPivotTable may list a more acceptable amount

I created rpivottable, and my problem is that when I start it, I can’t click on one of the options on the sidebar to filter out a certain coefficient, because it says there are too many to list them.

Pivottable:

enter image description here

And then when I click on Ad.Source, it looks like this:

enter image description here

This is a problem because if I want to create line graphs by clicking on the “Table” drop-down menu, this will not allow me to create a graph because there are too many factors and I can’t even filter it to make it presentable.

pivottable R, , , 1000, ?

+4
1

rpivotTable - js pivotTable. . , menuLimit, :

tmp <- rbind(iris, iris)
# Here you have limit on num column:
rpivotTable(cbind(tmp, num = 1:dim(tmp)[1]))
# Here you don't:
rpivotTable(cbind(tmp, num = 1:dim(tmp)[1]), menuLimit = 500)

, rivotTable ( ).

+8

Source: https://habr.com/ru/post/1624299/


All Articles