What is the package to create web page based applications in R?
R-Shiny!
What is the difference between a tuple and list in Python?
Lists are represented by Square brackets "[ ]" while tuples are represented by ( ). Lists are mutable (means size and content can change) while tuples are immutable (means size and contents cannot change).
Why would you sometimes go for ANOVA test versus Student's t-Test?
ANOVA stands for Analysis of Variance and is used when the number of variables is more than two while t-Test is used when the number of variables is two.