Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8208093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T09:13:31+00:00 2026-06-07T09:13:31+00:00

I have a graph with multiple data sets on it. I need to continually

  • 0

I have a graph with multiple data sets on it. I need to continually redraw these lines, each separately, as the data is updated. How can I delete and reestablish it repeatedly, preferably without having to delete the entire graph and redraw all of the lines on it every time?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T09:13:34+00:00Added an answer on June 7, 2026 at 9:13 am
    #!/usr/bin/env python
    
    import time
    from pylab import *
    
    ion() # turn interactive mode on
    
    # initial data
    x = arange(-8, 8, 0.1);
    y1 = sin(x)
    y2 = cos(x)
    
    # initial plot
    line1, line2, = plot(x, y1, 'r', x, y2, 'b')
    line1.axes.set_xlim(-10, 10)
    line1.axes.set_ylim(-2, 2)
    line1.set_label("line1")
    line2.set_label("line2")
    legend()
    grid()
    draw()
    
    # update line 1
    for i in xrange(50):
        time.sleep(0.1)
    
        # update data
        y1 = sin(x + float(i) / 10)
    
        # update plot
        line1.set_ydata(y1)
        draw()
    
    # update line 2
    for i in xrange(50):
        time.sleep(0.1)
    
        # update data
        y2 = cos(x + float(i) / 10)
    
        # update plot
        line2.set_ydata(y2)
        draw()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to Draw multiple line Graph with each line have different color and
I have a graph representing users and some articles they wrote. I need to
I have 6 graph bars with the prices. Each price number will represent its
I have oriented graph. Graph can be strongly connected. Every vertex can have a
I have a set of data on which I need to perform a topological
I have some periodic data, but the amount of data is not a multiple
I have defined a 'vertex' class which, when combined, form a graph. these vertices
Graph databases store data as nodes, properties and relations. If I need to retrieve
I need to have multiple time frame on a zedgraph. I have to display
I need to provide multiple data points on a single point inside a series.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.