by Suf | Oct 31, 2022 | Programming, R, Tips
This warning occurs when you use the dcast function to convert a data frame from long to wide format, but more than one value can be placed in the individual output cells of the wide data frame. You can stop this warning from occurring by specifying the aggregate...
by Suf | Oct 19, 2022 | C++, Finance, Programming, Tips
Implied volatility tells us the expected volatility of a stock over an option’s lifetime. Implied volatility is directly influenced by the supply and demand of the options and the market’s expectation of the direction of the price of the underlying security. As...
by Suf | Oct 15, 2022 | Finance, Programming, R, Tips
Implied volatility tells us the expected volatility of a stock over an option’s lifetime. Implied volatility is directly influenced by the supply and demand of the options and the market’s expectation of the direction of the price of the underlying...
by Suf | Oct 14, 2022 | Programming, R, Tips
This error occurs when you try to use the solve() function, but the matrix you handle is a singular matrix. Singular matrices do not have an inverse. The only way to solve this error is to create a matrix that is not singular. This tutorial will go through the error...
by Suf | Oct 12, 2022 | Programming, R, Tips
This R warning occurs when you have more than one column in group_by when using the dplyr::summarise(). The summarise function has a .groups argument with a default value of ‘drop_last’. If you set the .groups argument manually, the warning will not...