We will be using R programming and related software tools (R…

We will be using R programming and related software tools (R, RStudio) in this course. Did you ever use R, RStudio before? Briefly explain your familiarity, liking, and experience writing programs using R and using other R tools listed above.   Note: There is nothing to be worried about and afraid of. There will be recorded demonstrations in this course.  

Which of the following is the correct order in which the ste…

Which of the following is the correct order in which the steps below should be carried out during the development of a computer program to solve a problem?1. Determine the data types of the memory cells required for storage of problem inputs and outputs.2. Determine the problem inputs and outputs.3. Read and understand the problem.4. Write an initial algorithm.5. Refine algorithm steps where needed.  

Design and implement an application that creates a visual th…

Design and implement an application that creates a visual that allows you to inspect the frequencies of a set of values. The program should read in an arbitrary number of integers that are in the rage 1 to 100 inclusive; then it should produce a chart similar to the follwing one that indicates how many input values fell in th range 1 to 25, 26 to 50, 51 to 75, 76 to 100. Print one asterisk for each value entered.   1 –   25 | ******* 26 –   50 | ** 51 –   75 | ***** 76 – 100 | ************