Ciao amici! The Data Monk community is back with another new topic for you. It’s time for some programming, as we discuss the palindrome program in python. But, before you open your notebooks, let’s discuss what really is a ...
Continue readingFor Loop in Python | Python for Data Science | Day 5
Hola amigos! Your friends at The Data Monk are back with another absorbing topic- For Loop in Python. In vanilla terms, a For Loop in Python is used to execute a set of instructions for “n” no. of times ...
Continue readingDictionary in Python | Python for Data Science | Day 4
Hello, The Data Monk family! We hope you would have read our last tutorial on tuples. If not, do read the article to clarify your concepts. Now, it’s time for us to learn about dictionary in Python. Python’s dictionary is ...
Continue readingTuple in Python | Python for Data Science | Day 3
Hello, Python fam!Let’s get started with an essential concept in Python i.e. Tuples. Like all programming languages, Python uses buckets i.e. data structures to hold data for further computation. Tuple is Python’s exclusive data structure that is immutable ...
Continue readingHello World | Python for Data Science | Day 2
Hello Pyfans! In the previous article, we discussed Python installation. Now it’s time for us to dive into the code. For any programming language, the very first program is “Hello, World!”. The famous “Hello, World!” program is used to ...
Continue readingInstall Python | Python for Data Science | Day 1
Hey there, Pythonistas!If you’ve landed on this page for learning Python, congratulations! You have already taken the first step towards this incredible journey. Follow this tutorial thoroughly to learn how to install Python. Python’s object-oriented approach will make ...
Continue readingBest Fit Line in Linear Regression
Best Fit Line in Linear RegressionThe best fit line in linear regression is the one which tries to minimize the Residual sum of squares.It is the line which is supposed to give the best predictions on the unseen ...
Continue readingRegression Line vs Line of Best Fit
Regression Line vs Line of Best Fit,understand the difference between the two concepts of Linear RegressionRegression Line vs Line of Best Fit The regression line (curve) consists of the expected values of a variable ...
Continue readingData Science Model with high accuracy in training dataset but low in testing dataset
What do you mean when I say “The model has high accuracy in Training dataset but low in testing dataset"Data Science model interview question Answer by Swapnil
Continue readingMissing Value Treatment by mean, mode, median, and KNN Imputation | Day 5
Missing Value Treatment by mean, mode, median, and KNN ImputationOne of the most important technique in any Data Science model is to replace missing values with some numbers/values.We can't afford to remove the rows with missing values as ...
Continue reading