I have an issue with the below code and the error corresponding to the code. Can someone help?
Trying to run the below matrices that are defined-
ESL <- full_join(ES_Liquidity, ES_Liquidity_prev, by = "Institution");
ESL_SMBPN <- full_join(ES_Liquidity_SMBPN, ES_Liquidity_SMBPN_prev, by = "Institution");
ESL <- full_join(ESL, ESL_SMBPN, all = TRUE, by = "Institution");
table1 <- full_join(SC, ESL, by = "Institution"); # join where institution matches
table1_Revised <- full_join(SC_Revised, ESL, by = "Institution")
Errors that I'm getting outlined below-
1. <error/rlib_error_dots_nonempty>
2. Error in `full_join()`
! `...` must be empty.
x Problematic argument:
* all = TRUE
Any advice?
Trying to get the data read in the entire script. I'm trying to collate a dataframe with certain types of assests for e.g. ABS, covered bonds, central government bonds etc. Some of these assets have null values (0). Script isn't able to read it I believe?
The graph has x variables (i.e. ABS, Agency etc) but not all of them are in every month, especially now that collateral levels are very low, there are far less categories. Believe the graph doesn't know how to deal with it.