Question

Draw an approximation of the picture that the following code produces. Include x- and y-axis limits....

Draw an approximation of the picture that the following code produces. Include x- and y-axis limits.

import numpy as np

import matplotlib.pyplot as plt

x = np.arange(10)

fig, ax = plt.subplots() ## open a figure containing a single axis

ax.plot(x,x**2)

ax.scatter(x,-np.sqrt(x))

fig.show()

In Python!

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Code:

Output:

Raw Code:

# Importing modules
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(10)
fig , ax = plt.subplots() # open a figure containing a single axis
ax.plot(x,x**2) # ploting a line
ax.scatter(x,-np.sqrt(x))
ax.set(xlabel='x-axis', ylabel='y-axis') # Setting xlabel and ylabel
plt.show() # Change fig.show() to plt.show()

Add a comment
Know the answer?
Add Answer to:
Draw an approximation of the picture that the following code produces. Include x- and y-axis limits....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Write Python code that uses the np.split function to break up the array z created in...

    Write Python code that uses the np.split function to break up the array z created in the previous problem into four arrays named with two columns each named zOne, zTwo, zThree, and zFour. The following is the code to get z: import numpy as np x = np.array ([4,4,11,11,0,7,10,6,9,11,14,6,4,5,6],dtype='int64').reshape((3, 5)) y = np.array ([6,7,4,2,2,7,5,2,3],dtype='int64').reshape((3, 3)) z = np.concatenate([x,y],axis=1)

  • Write a simple Python code to draw a line (y=10x). The plot should have the following...

    Write a simple Python code to draw a line (y=10x). The plot should have the following labels in the x-axis, y-axis, and a title.

  • python Problem 3-6 points First, start with the following code: import numpy as np A np.random....

    python Problem 3-6 points First, start with the following code: import numpy as np A np.random. randint (0, 10, sie n,n)) np. savetxt ('exam2.txt', A, fmt-idelimiter B-# np. zeros ( (n, n) , dtypes, int 64, ) When run, it will produce a file named "exam2.txt" that has 5 rows each with 5 numbers separated by commas,. In addition, a 5 by 5 array of zeros named B is defined. Run this code, but do not change it Your job...

  • Python 1 import matplotlib.pyplot as plt 2 import numpy as np 3 4 abscissa = np.arange(20) 5 plt....

    python 1 import matplotlib.pyplot as plt 2 import numpy as np 3 4 abscissa = np.arange(20) 5 plt.gca().set_prop_cycle( ’ color ’ , [ ’ red ’ , ’ green ’ , ’ blue ’ , ’ black ’ ]) 6 7 class MyLine: 8 9 def __init__(self, * args, ** options): 10 #TO DO: IMPLEMENT FUNCTION 11 pass 12 13 def draw(self): 14 plt.plot(abscissa,self.line(abscissa)) 15 16 def get_line(self): 17 return "y = {0:.2f}x + {1:.2f}".format(self.slope, self.intercept) 18 19 def __str__(self):...

  • Python Programming language. Complete the problems below using Jupyter Notebook. Problem Needs to be solved from...

    Python Programming language. Complete the problems below using Jupyter Notebook. Problem Needs to be solved from number #1 link provided for the Data: -----> https://docs.google.com/spreadsheets/d/1TqhyxFKQlOHAyXpQBL-4C96kgZFBoMwUgE8-b33CqPQ/edit?usp=sharing PROBLEMS # 0.0 Import the libraries (pandas, matplotlib, and seaborn) Include the code line: %matplotlib inline #Include the code line: plt.style.use(“ggplot”) #Load the data using pandas #Inspect the data using head(), dtypes ANSWERD: import pandas as pd import matplotlib.pyplot as plt import seaborn as sns plt.style.use('ggplot') %matplotlib inline df = pd.read_csv() print(df.head()) print(df.dtypes) # 1...

  • #PYTHON# In this exercise you will write code which loads a collection of images (which are...

    #PYTHON# In this exercise you will write code which loads a collection of images (which are all the same size), computes a pixelwise average of the images, and displays the resulting average. The images below give some examples that were generated by averaging "100 unique commemorative photographs culled from the internet" by Jason Salavon. Your program will do something similar. Write a function in the cell below that loads in one of the sets of images and computes their average....

  • The equation y=145x−37y=145x−37 will contact the x-axis. You can solve it manually for y=0y=0 to see...

    The equation y=145x−37y=145x−37 will contact the x-axis. You can solve it manually for y=0y=0 to see where this is. But it is also possible to use a very small ΔxΔx to gradually home in on an approximate answer. Have a go. Hint: try to do it in 100 or fewer steps, start with x=1x=1 and use a ΔxΔx 10 to 100 times smaller than xx. Consider using if and else statements to handle what happens if you go past the...

  • In python, please code the following: Problem 4 Download the file ATLForecast.dat from canvas. You may...

    In python, please code the following: Problem 4 Download the file ATLForecast.dat from canvas. You may wish to open it to inspect the contents (then close the file to ensure no file locking implications). This file contains the minimum forecast temperature for the next 10 days in Atlanta (I'm waiting for the cool weather to start). Write a program that reads in the contents of this file (see example provided below, usinga function within numpy to read in this text...

  • Problem 1: Random Walk A random walk is a stochastic process. A stochastic process is a series of...

    python / visual studio Problem 1: Random Walk A random walk is a stochastic process. A stochastic process is a series of values that are not determined functionally, but probabilistically. The random walk is supposed to describe an inebriated person who, starting from the bar, intends to walk home, but because of intoxication instead randomly takes single steps either forward or backward, left or right. The person has no memory of any steps taken, so theoretically, the person shouldn't move...

  • please use python thanks will rate!! x + Run C Code Validate Implement the function step_random_walk_20(x_coords,...

    please use python thanks will rate!! x + Run C Code Validate Implement the function step_random_walk_20(x_coords, Y_coords) below, which should take two arrays of equal length containing the x-andy- coordinates for some number of particles. We'll use a very simple random walk algorithm • For each particle, choose a random angle between 0 and 2 • The particle moves by 1 unit of distance in the direction given by d.o. It is displaced by (Ax, Ay) (cos, sino). We'll do...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT