Quizzes on Data Visualization in Python
[HDquiz quiz = “415”]
Quizzes on Data Visualization in Python Read More »
[HDquiz quiz = “415”]
Quizzes on Data Visualization in Python Read More »
Online Python Interpreters with Their Links : Google Collab https://colab.research.google.com/ Repl https://repl.it/@enaard/Python-3 Quizzes 1- Python Quizzes 2- Quizzes on Tokens Online Courses From Postnetwork (Under Development) Python Crash Course See Also: Robotics and Machine Learning Workshop July-2020
During lockdown a number of webinars are conducted by several experts. Some are giving session on Yoga some are on parental care of kids during lockdown many more. I have also attended a webinar regarding online teaching methods and tools which can help a teacher to engage their students. Moreover, session was wonderful and brainstorming
Brainstorming Webinar by LXL Read More »
This lecture series contains videos, study materials and quizzes related to the following topics. Python character set Tokens and its types The basic process to follow the lecture series is. 1- First watch video 2- Read the topic 3- Finally, take the quiz 4- If any problem or error in lecture series comment Things to
Python Fundamentals Read More »
File Handling in Python What happens when you run a program and input some data to be processed. You get result and if you again run your program your previous data are lost. Since Random Access Memory (RAM) is volatile and it frees the memory when the program stops. To solve this problem you can
File Handling in Python Read More »
In Python, lambda keyword is used to create anonymous function in Python. User defined functions in Python are defined using def keyword. However, anonymous functions in Python are defined using lambda keyword. The syntax of anonymous function is afun=lambda parameters : expression Lambda function expression must be in a single line expression. Examples are- Sum
Lambda Function in Python Read More »
Chi Square Distribution Chi square variate is a square of a normal variate having 1 degree of freedom and chi square distribution is a special case of Gamma distribution. If X is following normal distribution N(μ, σ) then Z=((X-μ)/σ)2 is a chi-square variate with 1 degree of freedom. The generalized form of chi-square variate is
Chi Square Distribution Read More »
Gamma function and Gamma Probability Distribution Gamma function and Gamma probability density both are very important concepts in mathematics and statistics. Furthermore, understanding Gamma function and Gamma probability density helps to understand chi-square distribution which plays very important role in machine learning. Especially, in Decision Tree Learning Chi-Square distribution used. In this post, I will
Gamma Function and Gamma Probability Density Function Read More »
Improper Integrals In improper integral, either upper limit or lower limit tends to -∞ or ∞. Furthermore, both integrals may approach to infinity one negative infinity -∞ and other is ∞. Examples of improper integrals are
Improper Integrals Read More »