I am working with bank-firm level lending panel data (i.e. loans from a group of banks to a group of firms for a country are recorded at a monthly frequency).
I want to conduct panel data FE regression. However, to conduct FE, it is required that I set the data as panel data on R using using the plm
package:
plm.data(data table name, index=("unique ID","time"))
Is it possible to enter multiple fields in the ID to create a pair-wise identification at a monthly level? (index=("firm ID" "bank ID","time")
)
Or do I have to concatenate the firm and bank IDs to make a unique monthly ID variable?
Thank you for your responses. (I cannot attach the data or the code/photo since it is on a remote computer)