Course duration : 7 hrs
Coupon validity : 3 day
Share with credit : @educatwork
๐๐๐๐๐
Join us on YouTube and Instagram for more quality content ๐ก๐ก
https://youtube.com/c/educatwork
========================
https://www.udemy.com/course/linear-regression-and-logistic-regression-r-studio-starttech/?couponCode=F84C4755
Coupon validity : 3 day
Share with credit : @educatwork
๐๐๐๐๐
Join us on YouTube and Instagram for more quality content ๐ก๐ก
https://youtube.com/c/educatwork
========================
https://www.udemy.com/course/linear-regression-and-logistic-regression-r-studio-starttech/?couponCode=F84C4755
Udemy
Linear Regression and Logistic Regression using R Studio
Linear Regression and Logistic Regression for beginners. Understand the difference between Regression & Classification
This media is not supported in your browser
VIEW IN TELEGRAM
Learn Python by๐คฉ Making Swiggy ChatBot๐ค
๐Webinar for Data Science๐ค enthusiasts on how can you make your own Chat Bot like Swiggy
Register here:
https://bit.ly/SwiggyChatBot
Everything will be from Scratch, that anyone with a learning attitude๐ฏ can learn.
โผ๏ธAttend the session till the end to get the Code file & Certificate
4 slots available for the amazing session, book as per convenience:
๐Feb 22, 2022 at 7pm
๐Feb 23, 2022 at 7pm
๐Feb 24, 2022 at 7pm
๐Feb 25, 2022 at 7pm
Link ๐ for session? Check WhatsApp/Email after registration.
๐Webinar for Data Science๐ค enthusiasts on how can you make your own Chat Bot like Swiggy
Register here:
https://bit.ly/SwiggyChatBot
Everything will be from Scratch, that anyone with a learning attitude๐ฏ can learn.
โผ๏ธAttend the session till the end to get the Code file & Certificate
4 slots available for the amazing session, book as per convenience:
๐Feb 22, 2022 at 7pm
๐Feb 23, 2022 at 7pm
๐Feb 24, 2022 at 7pm
๐Feb 25, 2022 at 7pm
Link ๐ for session? Check WhatsApp/Email after registration.
Free cheat sheet for all programming languages ๐
https://youtube.com/shorts/1vsCoPrbynU
https://youtube.com/shorts/1vsCoPrbynU
Forwarded from Avi
Hello Everyone ๐!!
You're Invited to enjoy a free webhosting and your own website totally free
Make your own website within 8 minutes
Without any coding knowledge.
Learn to make your own Website for free with free domain name and free hosting.
Weโre going to create our website.
So Letโs get started!
link is here
https://youtu.be/QwYIIMrRRis
Regards
@Educatwork
You're Invited to enjoy a free webhosting and your own website totally free
Make your own website within 8 minutes
Without any coding knowledge.
Learn to make your own Website for free with free domain name and free hosting.
Weโre going to create our website.
So Letโs get started!
link is here
https://youtu.be/QwYIIMrRRis
Regards
@Educatwork
Today's Interview QnAs
Company Name - Zensar
Role: Data Scientist
1. What are the assumptions required for linear regression? What if some of these assumptions are violated?
Ans: The assumptions are as follows:
The sample data used to fit the model is representative of the population
The relationship between X and the mean of Y is linear
The variance of the residual is the same for any value of X (homoscedasticity)
Observations are independent of each other
For any value of X, Y is normally distributed.
Extreme violations of these assumptions will make the results redundant. Small violations of these assumptions will result in a greater bias or variance of the estimate.
2.What is multicollinearity and how to remove it?
Ans: Multicollinearity exists when an independent variable is highly correlated with another independent variable in a multiple regression equation. This can be problematic because it undermines the statistical significance of an independent variable.
You could use the Variance Inflation Factors (VIF) to determine if there is any multicollinearity between independent variables โ a standard benchmark is that if the VIF is greater than 5 then multicollinearity exists.
3. What is overfitting and how to prevent it?
Ans: Overfitting is an error where the model โfitsโ the data too well, resulting in a model with high variance and low bias. As a consequence, an overfit model will inaccurately predict new data points even though it has a high accuracy on the training data.
Few approaches to prevent overfitting are:
- Cross-Validation:Cross-validation is a powerful preventative measure against overfitting. Here we use our initial training data to generate multiple mini train-test splits. Now we use these splits to tune our model.
- Train with more data: It wonโt work every time, but training with more data can help algorithms detect the signal better or it can help my model to understand general trends in particular.
- We can remove irrelevant information or the noise from our dataset.
- Early Stopping: When youโre training a learning algorithm iteratively, you can measure how well each iteration of the model performs.
Up until a certain number of iterations, new iterations improve the model. After that point, however, the modelโs ability to generalize can weaken as it begins to overfit the training data.
Early stopping refers stopping the training process before the learner passes that point.
- Regularization: It refers to a broad range of techniques for artificially forcing your model to be simpler. There are mainly 3 types of Regularization techniques:L1, L2,&,Elastic- net.
- Ensembling : Here we take number of learners and using these we get strong model. They are of two types : Bagging and Boosting.
4. Given two fair dices, what is the probability of getting scores that sum to 4 and 8?
Ans: There are 4 combinations of rolling a 4 (1+3, 3+1, 2+2):
P(rolling a 4) = 3/36 = 1/12
There are 5 combinations of rolling an 8 (2+6, 6+2, 3+5, 5+3, 4+4):
P(rolling an 8) = 5/36
.................
๐ดIf you want to learn Data Science join our telegram channel
@educatwork
Company Name - Zensar
Role: Data Scientist
1. What are the assumptions required for linear regression? What if some of these assumptions are violated?
Ans: The assumptions are as follows:
The sample data used to fit the model is representative of the population
The relationship between X and the mean of Y is linear
The variance of the residual is the same for any value of X (homoscedasticity)
Observations are independent of each other
For any value of X, Y is normally distributed.
Extreme violations of these assumptions will make the results redundant. Small violations of these assumptions will result in a greater bias or variance of the estimate.
2.What is multicollinearity and how to remove it?
Ans: Multicollinearity exists when an independent variable is highly correlated with another independent variable in a multiple regression equation. This can be problematic because it undermines the statistical significance of an independent variable.
You could use the Variance Inflation Factors (VIF) to determine if there is any multicollinearity between independent variables โ a standard benchmark is that if the VIF is greater than 5 then multicollinearity exists.
3. What is overfitting and how to prevent it?
Ans: Overfitting is an error where the model โfitsโ the data too well, resulting in a model with high variance and low bias. As a consequence, an overfit model will inaccurately predict new data points even though it has a high accuracy on the training data.
Few approaches to prevent overfitting are:
- Cross-Validation:Cross-validation is a powerful preventative measure against overfitting. Here we use our initial training data to generate multiple mini train-test splits. Now we use these splits to tune our model.
- Train with more data: It wonโt work every time, but training with more data can help algorithms detect the signal better or it can help my model to understand general trends in particular.
- We can remove irrelevant information or the noise from our dataset.
- Early Stopping: When youโre training a learning algorithm iteratively, you can measure how well each iteration of the model performs.
Up until a certain number of iterations, new iterations improve the model. After that point, however, the modelโs ability to generalize can weaken as it begins to overfit the training data.
Early stopping refers stopping the training process before the learner passes that point.
- Regularization: It refers to a broad range of techniques for artificially forcing your model to be simpler. There are mainly 3 types of Regularization techniques:L1, L2,&,Elastic- net.
- Ensembling : Here we take number of learners and using these we get strong model. They are of two types : Bagging and Boosting.
4. Given two fair dices, what is the probability of getting scores that sum to 4 and 8?
Ans: There are 4 combinations of rolling a 4 (1+3, 3+1, 2+2):
P(rolling a 4) = 3/36 = 1/12
There are 5 combinations of rolling an 8 (2+6, 6+2, 3+5, 5+3, 4+4):
P(rolling an 8) = 5/36
.................
๐ดIf you want to learn Data Science join our telegram channel
@educatwork
FREE RESOURCES TO LEARN PYTHON
๐๐
Free Udacity Course to learn Python
https://imp.i115008.net/5bK93j
Data Structure and OOPS in Python Free Courses
https://bit.ly/3t1WEBt
Free Certified Python course by Freecodecamp
https://www.freecodecamp.org/learn/scientific-computing-with-python/
Free Python Course from Google
https://developers.google.com/edu/python
Free Python Tutorials from Kaggle
https://www.kaggle.com/learn/python
Python hands-on Project
https://t.me/Programming_experts/23
Free Python Books Collection
https://cfm.ehu.es/ricardo/docs/python/Learning_Python.pdf
https://static.realpython.com/python-basics-sample-chapters.pdf
๐จโ๐ปWebsites to Practice Python
1. http://codingbat.com/python
2. https://www.hackerrank.com/
3. https://www.hackerearth.com/practice/
4. https://projecteuler.net/archives
5. http://www.codeabbey.com/index/task_list
6. http://www.pythonchallenge.com/
Beginner's guide to Python Free Book
https://t.me/pythondevelopersindia/144
Official Documentation
https://docs.python.org/3/
Join @Educatwork for more free courses
ENJOY LEARNING ๐๐
๐๐
Free Udacity Course to learn Python
https://imp.i115008.net/5bK93j
Data Structure and OOPS in Python Free Courses
https://bit.ly/3t1WEBt
Free Certified Python course by Freecodecamp
https://www.freecodecamp.org/learn/scientific-computing-with-python/
Free Python Course from Google
https://developers.google.com/edu/python
Free Python Tutorials from Kaggle
https://www.kaggle.com/learn/python
Python hands-on Project
https://t.me/Programming_experts/23
Free Python Books Collection
https://cfm.ehu.es/ricardo/docs/python/Learning_Python.pdf
https://static.realpython.com/python-basics-sample-chapters.pdf
๐จโ๐ปWebsites to Practice Python
1. http://codingbat.com/python
2. https://www.hackerrank.com/
3. https://www.hackerearth.com/practice/
4. https://projecteuler.net/archives
5. http://www.codeabbey.com/index/task_list
6. http://www.pythonchallenge.com/
Beginner's guide to Python Free Book
https://t.me/pythondevelopersindia/144
Official Documentation
https://docs.python.org/3/
Join @Educatwork for more free courses
ENJOY LEARNING ๐๐
FREE MASTERCLASS ON _MEARN STACK_WITH INSHORTS APP DEVELOPMENT๐
#WeekEndLearningSessions
โก๏ธ MASTERCLASS DATE: 8th and 15th MAY - Sunday Sessions
โก๏ธ TOTAL DURATION: 6 Hours
โก๏ธ TIME: 08:00PM. - 11:00PM. [ IST ]
Who can attend: - STUDENTS, FACULTIES or PROFESSIONALS
_Masterclass program is designed to quickly develop applications using MongoDB, ExpressJS, Angular, ReactJS, NodeJS etc. MEARN Stack Development Workshop by REGex is designed by Industry Expert so that You will learn Industry Oriented development with Practical Implementation._
Register Now: https://www.regexsoftware.com/free-workshops-may-2022/
_
๐ WHAT YOU WILL LEARN:๐๐ป
๐๐ป How to develop full stack application by adding server side functionality
๐๐ป Runtime management & API integration
๐๐ป Integration of database with application
๐๐ป Important Interview Questions Discussion
๐๐ป Integration of backend and frontend
๐๐ป Create Inshorts News App Clone
_
FEATURES๐๐ป
๐๐ป LIVE INTERACTIVE SESSIONS
๐๐ป Q / A would be at last
๐๐ป Mentorship Support for your queries
๐๐ป Important Interview Questions Discussion
BENEFITS:
๐ธ LIVE SESSION and get a chance to get exclusive discount coupon in REGex Trainings and internships programs
๐น Develop INSHORTS News App during the workshop
๐ธ Important Interview Questions Discussion
๐น GET MASTERCLASS CERTIFICATE [ ISO CERTIFIED ]
----------__--
Register-Now: https://www.regexsoftware.com/free-workshops-may-2022/
Use code 'datascienceinfo' for flat 10% off
[ You will get session link by mail and WhatsApp ]
#LEARNING SUNDAY
_
ALSO JOIN TELEGRAM for more updates: https://t.me/educatwork
#WeekEndLearningSessions
โก๏ธ MASTERCLASS DATE: 8th and 15th MAY - Sunday Sessions
โก๏ธ TOTAL DURATION: 6 Hours
โก๏ธ TIME: 08:00PM. - 11:00PM. [ IST ]
Who can attend: - STUDENTS, FACULTIES or PROFESSIONALS
_Masterclass program is designed to quickly develop applications using MongoDB, ExpressJS, Angular, ReactJS, NodeJS etc. MEARN Stack Development Workshop by REGex is designed by Industry Expert so that You will learn Industry Oriented development with Practical Implementation._
Register Now: https://www.regexsoftware.com/free-workshops-may-2022/
_
๐ WHAT YOU WILL LEARN:๐๐ป
๐๐ป How to develop full stack application by adding server side functionality
๐๐ป Runtime management & API integration
๐๐ป Integration of database with application
๐๐ป Important Interview Questions Discussion
๐๐ป Integration of backend and frontend
๐๐ป Create Inshorts News App Clone
_
FEATURES๐๐ป
๐๐ป LIVE INTERACTIVE SESSIONS
๐๐ป Q / A would be at last
๐๐ป Mentorship Support for your queries
๐๐ป Important Interview Questions Discussion
BENEFITS:
๐ธ LIVE SESSION and get a chance to get exclusive discount coupon in REGex Trainings and internships programs
๐น Develop INSHORTS News App during the workshop
๐ธ Important Interview Questions Discussion
๐น GET MASTERCLASS CERTIFICATE [ ISO CERTIFIED ]
----------__--
Register-Now: https://www.regexsoftware.com/free-workshops-may-2022/
Use code 'datascienceinfo' for flat 10% off
[ You will get session link by mail and WhatsApp ]
#LEARNING SUNDAY
_
ALSO JOIN TELEGRAM for more updates: https://t.me/educatwork
Telegram
Educatwork |Free| Udemy| Google| TCS| Free Online Courses
We provide unlimited Paid Premium Courses for free with CERTIFICATE & Internships, jobs, Preparation of Exam's
And some informative content ๐ฉโ๐ป๐ฉโ๐ป
Courses are free for limited time only
โ ๏ธโ ๏ธJoin us on YT & Instagram๐ก
https://youtube.com/c/educatwork
And some informative content ๐ฉโ๐ป๐ฉโ๐ป
Courses are free for limited time only
โ ๏ธโ ๏ธJoin us on YT & Instagram๐ก
https://youtube.com/c/educatwork
Forwarded from Avi
https://www.linkedin.com/groups/14003364/
This is community group for data science students form all over the India
Here you can learn and share
This is community group for data science students form all over the India
Here you can learn and share
What's your favorite way to consume educational content?
Anonymous Poll
75%
Videos
19%
Blog/Documentations
38%
Books
8%
Other ways
Important topics which you should know to learn Tableau
๐ Beginners Topics
*Tableau Products (Desktop, Prep, Online, Public and Server)
*Connecting to data(Joining and Blending)
*Live Connection and an Extract
*Dimensions and measures
*Overview of Columns and Rows shelf
*Overview of the Marks card
*Data Types in Tableau
*Tableau filters
*Different Joins in Tableau(Inner, left, right, outer, union)
*Calculated Field
*Set, Group and Parameter
*Level of Detail (LOD) Expression
*Basic Charts: Bar Chart, Line Chart, and Pie Chart
*Gantt Chart, Heatmaps, Box and Whiskerโs Plot
*Show Me option
*Built-in Functions (Number, String, Date, Logical and Aggregate)
*Tableau Worksheet, Dashboard and Story
*Add interactivity to your dashboards
*Dashboard Formatting
*Formatting Story Points
๐ Intermediate Topics
*Logic behind Charts
*Blended and Dual Axis
*Rank Functions(rank,rank_dense,rank_modified,rank_unique)
*Trend lines, Forecasting and Clustering feature in Tableau
*Geographic Visualizations
*Bullet Chart,Bar in Bar Chart, Waterfall Chart, Pareto Chart, Control Chart, Funnel Chart, Bump Chart, Step and Jump Lines, Word Cloud and Donut Chart
๐ Free useful official Tableau resources to start learning
https://public.tableau.com/en-us/s/resources
https://help.tableau.com/current/pro/desktop/en-us/gettingstarted_overview.htm
https://www.tableau.com/community/iron-viz
https://www.makeovermonday.co.uk/
https://help.tableau.com/current/pro/desktop/en-us/what_chart_example.htm
https://www.tableau.com/about/blog/2019/4/advanced-analytics-tableau-common-analysis-scenarios-resources-106020
https://help.tableau.com/current/pro/desktop/en-us/perf_checklist.htm
https://www.tableau.com/learn/training/20222
๐ Beginners Topics
*Tableau Products (Desktop, Prep, Online, Public and Server)
*Connecting to data(Joining and Blending)
*Live Connection and an Extract
*Dimensions and measures
*Overview of Columns and Rows shelf
*Overview of the Marks card
*Data Types in Tableau
*Tableau filters
*Different Joins in Tableau(Inner, left, right, outer, union)
*Calculated Field
*Set, Group and Parameter
*Level of Detail (LOD) Expression
*Basic Charts: Bar Chart, Line Chart, and Pie Chart
*Gantt Chart, Heatmaps, Box and Whiskerโs Plot
*Show Me option
*Built-in Functions (Number, String, Date, Logical and Aggregate)
*Tableau Worksheet, Dashboard and Story
*Add interactivity to your dashboards
*Dashboard Formatting
*Formatting Story Points
๐ Intermediate Topics
*Logic behind Charts
*Blended and Dual Axis
*Rank Functions(rank,rank_dense,rank_modified,rank_unique)
*Trend lines, Forecasting and Clustering feature in Tableau
*Geographic Visualizations
*Bullet Chart,Bar in Bar Chart, Waterfall Chart, Pareto Chart, Control Chart, Funnel Chart, Bump Chart, Step and Jump Lines, Word Cloud and Donut Chart
๐ Free useful official Tableau resources to start learning
https://public.tableau.com/en-us/s/resources
https://help.tableau.com/current/pro/desktop/en-us/gettingstarted_overview.htm
https://www.tableau.com/community/iron-viz
https://www.makeovermonday.co.uk/
https://help.tableau.com/current/pro/desktop/en-us/what_chart_example.htm
https://www.tableau.com/about/blog/2019/4/advanced-analytics-tableau-common-analysis-scenarios-resources-106020
https://help.tableau.com/current/pro/desktop/en-us/perf_checklist.htm
https://www.tableau.com/learn/training/20222
Tableau Public
How-To Videos | Tableau Public
Watch how-to videos to learn foundational Tableau concepts and terminology while building an interactive dashboard in Tableau Public.
@educatwork This course includes:
31 hours on-demand video
1 article
Full lifetime access
Access on mobile and TV
Certificate of completion https://www.udemy.com/course/kotlin-android-training-android-app-development/?couponCode=ANDROIDOCSALYCOM
31 hours on-demand video
1 article
Full lifetime access
Access on mobile and TV
Certificate of completion https://www.udemy.com/course/kotlin-android-training-android-app-development/?couponCode=ANDROIDOCSALYCOM
Udemy
Real Android App Dev in 15 Hours|KotlinDevX Certificate 2023
Learn Kotlin and develop android applications from 0 to Hero. Start your Android App Development career now and be Pro !
AWS Community Days are community-organized cloud education events, featuring technical discussions and demos led by expert AWS users and industry leaders from around the world
Community-based learning is the best way to enhance the concepts being taught by connecting with enthusiasts in person, thereby sharing first-hand experiences and familiar, accessible examples.
All skill levels are welcome to help accomplish our motto of learning, sharing and networking. Let's join hands to empower this tech community to make it bigger and better!
https://awscommunityday.in/?referred_by=d2bead82&campaign_id=386&referral_mode=email
Community-based learning is the best way to enhance the concepts being taught by connecting with enthusiasts in person, thereby sharing first-hand experiences and familiar, accessible examples.
All skill levels are welcome to help accomplish our motto of learning, sharing and networking. Let's join hands to empower this tech community to make it bigger and better!
https://awscommunityday.in/?referred_by=d2bead82&campaign_id=386&referral_mode=email
awscommunityday.in
AWS Users Group India
AWS User Group India is volunteer driven, group of passionate Amazon Web Services (aka AWS) {Developers, Architects, Users, Evangelists} who meet to {share best practices, discuss up coming features, pit falls, etc} in India.
Hello ๐ everyone, we are back!