Month: February 2021

Python Exercise: Generate a list and tuple with comma-separated numbers

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program which accepts a sequence of comma-separated numbers from user and generate a list and a tuple with those numbers. Sample data: 3, 5, 7, 23 Python list: A list is a container which holds comma separated values (items or elements) between square brackets …

Python Exercise: Write a Python program which accepts the radius of a circle from the user and compute the area

  (Python Example for Citizen Data Scientist & Business Analyst)   Exercise: Write a Python program which accepts the radius of a circle from the user and compute the area. Python: Area of a Circle In geometry, the area enclosed by a circle of radius r is πr2. Here the Greek letter π represents a …

Year 1 – Math Worksheet 011 – Modeling Real Life Objects Using Shapes Worksheets

  Year 1 – Math Worksheet 011 – Modelling Real Life Objects Using Shapes Worksheets     Applied Machine Learning & Data Science with Python, R and SQL. A list of Python, R and MATLAB Codes for Applied Machine Learning and Data Science https://setscholars.net/   Subscribe to our YouTube channel and press the ring to get …

Year 1 – Math Worksheet 010 – Comparing Objects using their Measurements Worksheets

  Year 1 – Math Worksheet 010 – Comparing Objects using their Measurements Worksheets     Year 1 – Math Worksheet 009 – Representing Objects with Numbers from 0-20   Free Machine Learning & Data Science Coding Tutorials in Python & R for Beginners. Subscribe @ Western Australian Center for Applied Machine Learning & Data …

R Examples for Beginners – Sum of Natural Numbers Using Recursion

(R Example for Citizen Data Scientist & Business Analyst)   Sum of Natural Numbers Using Recursion In this example, you’ll learn to find the sum of natural numbers using recursion. To solve this problem, a recursive function calculate_sum() function is created.   Example: Sum of Natural Numbers # Program to find the sum of natural …

R Examples for Beginners – R Program to Make a Simple Calculator

(R Example for Citizen Data Scientist & Business Analyst)   R Program to Make a Simple Calculator In this example, you will learn to create a simple calculator that can add, subtract, multiply and divide two numbers entered by the user.   Example: Simple Calculator in R # Program make a simple calculator that can …

R Examples for Beginners – R Program to Find L.C.M.

(R Example for Citizen Data Scientist & Business Analyst)   R Program to Find L.C.M. In this example, you will learn to find the L.C.M of two numbers entered by the user by creating a user-defined function. The least common multiple (L.C.M.) of two numbers is the smallest positive integer that is perfectly divisible by …

R Examples for Beginners – R Program to Find H.C.F. or G.C.D

(R Example for Citizen Data Scientist & Business Analyst)   R Program to Find H.C.F. or G.C.D In this article, you will learn to find the GCD (Greatest Common Divisor) by creating a user-defined function in two different ways. The highest common factor (H.C.F) or greatest common divisor (G.C.D) of two numbers is the largest …