Uniform Distribution Use uniform.rvs and assign its output to the variable samples. In this function, specify the location (loc) parameter to be 100, set the scale to be 20, and the sample size to be 1000 and generate histogram.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

using pandas, python

Uniform Distribution

Use uniform.rvs and assign its output to the variable samples. In this function, specify the location (loc) parameter to be 100, set the scale to be 20, and the sample size to be 1000 and generate histogram. 

 

 

Uniform Distribution
Use uniform.rvs and assign its output to the variable samples . In this function, specify the location ( loc ) parameter to be 100, set the scale
to be 20, and the sample size to be 1000.
Note: For these distributions, I want you to look up the documentation to understand the parameters you need to use and to get used to understanding
python documentation.
# YOUR CODE HERE
samples
uniform.rvs (loc= 100, scale= 20, size=1000)
assert len (samples)==1000
assert isinstance(samples, np.ndarray)
Now, generate a histogram of this distribution
# YOUR CODE HERE
Transcribed Image Text:Uniform Distribution Use uniform.rvs and assign its output to the variable samples . In this function, specify the location ( loc ) parameter to be 100, set the scale to be 20, and the sample size to be 1000. Note: For these distributions, I want you to look up the documentation to understand the parameters you need to use and to get used to understanding python documentation. # YOUR CODE HERE samples uniform.rvs (loc= 100, scale= 20, size=1000) assert len (samples)==1000 assert isinstance(samples, np.ndarray) Now, generate a histogram of this distribution # YOUR CODE HERE
Expert Solution
Step 1

Using python:

Import packages:

# import uniform distribution
from scipy.stats import uniform
import numpy as np
# import seaborn
import seaborn as sns
# settings for seaborn plotting style
sns.set(color_codes=True)
# settings for seaborn plot sizes
sns.set(rc={'figure.figsize':(5,5)})

uniform function generate uniform continuous variable between the specified interval through its loc and scale arguments. 

samples=uniform.rvs(loc=100,scale=20,size=1000)

assert len(samples)==1000

assert isinstance(samples, np.ndarray)

use Seaborn’s distplot to plot the histogram of the distribution:

ax = sns.distplot(samples,
                  bins=100,
                  kde=True,
                  color='skyblue',
                  hist_kws={"linewidth": 15,'alpha':1})
ax.set(xlabel='Uniform Distribution ', ylabel='Frequency')

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Random variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education