Code Monkey home page Code Monkey logo

dsc-more-practice-with-matplotlib-lab's People

Contributors

bpurdy-ds avatar cheffrey2000 avatar christine-egan42 avatar fpolchow avatar hoffm386 avatar loredirick avatar mathymitchell avatar mike-kane avatar peterbell avatar shakeelraja avatar tkoar avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dsc-more-practice-with-matplotlib-lab's Issues

Avoid conflating terms

Thanks for raising this issue! Future learners thank you for your diligence. In
order to help the curriculum team address the problem, please use this template
to submit your feedback. We'll work on addressing the issue as soon as we can.

Please fill out as much of the information below as you can (it's ok if you
don't fill out every section). The more context we have, the easier it will be
to fix your issue!

Note: you should only raise issues related to the contents of this lesson.
If you have questions about your code or need help troubleshooting, reach out to
an instructor/your peers.


Link to Canvas

Add a link to the assignment in Canvas here.

What should be changed?

Suggest your change here. Let us know what section or line of the Readme needs
to be updated, and any proposed corrections. Include the line number(s) if
possible.

Additional context

Add any other context about the problem here.

Incorrect Variable Names in Customizing Visualizations with Matplotlib - Lab

Link to Canvas

https://learning.flatironschool.com/courses/7620/assignments/268894?module_item_id=646917

Issue Subtype

  • Master branch code
  • Solution branch code
  • [x ] Code tests
  • Layout/rendering issue
  • Instructions unclear
  • Other (explain below)

Describe the Issue

Source

# Run this cell without changes
import numpy as np

# Generate a list of numbers from 0 to 99
x_values = np.arange(0,100)

# Multiply values of x_values with 2 to get y_values
y_values = x*2

# Calculate square of values in for variable z_values
z_values = x**2

# Print x_values, y_values and z_values
print (x_values, y_values, z_values)

Concern

Screenshot 2024-02-02 115923

The variables in lines 8 and 11 are incorrect. 'x' should be replaced with 'x_values'.

(Optional) Proposed Solution

Run this cell without changes

import numpy as np

Generate a list of numbers from 0 to 99

x_values = np.arange(0,100)

Multiply values of x_values with 2 to get y_values

y_values = x_values*2

Calculate square of values in for variable z_values

z_values = x_values**2

Print x_values, y_values and z_values

print (x_values, y_values, z_values)

What OS Are You Using?

  • OS X
  • [x ] Windows
  • WSL
  • Linux
  • Saturn Cloud from Canvas

Any Additional Context?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.