Ggvis uses ": =" in conjunction with data.table

When ggvis starts, I get a message:

The following object is masked from ‘package:data.table’:

:=

That: = is necessary to run data.table, which is an alternative for dplyr.

My code is still working correctly, but the startup message bothers me, as I use data.table in all my scripts.

What are the consequences of using: = in both data.table and ggvis, given the ggvis launch message?

+4
source share
1 answer

ggvis data.table ( R ). , , ggvis::":=" data.table::":=" ( stop ).

, , (, data.table ggvis , , ).

+7

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


All Articles