#Change from wide format to long format
oil_consumption_per_cap <- gather(oil_consumption_per_cap, 'Year', 'Consumption',
2:length(oil_consumption_per_cap))
Error in gather(oil_consumption_per_cap, "Year", "Consumption", 2:length(oil_consumption_per_cap)) :
could not find function "gather"
why does it appear error?