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

  • SEARCH
  • Home
  • 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 536855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:51:56+00:00 2026-05-13T09:51:56+00:00

I am gathering data from a website. I estimate to get 10.000 datapoints (time

  • 0

I am gathering data from a website. I estimate to get 10.000 datapoints (time – value) multiplied by seven – over time. That is way to much. Both for storing and plotting it in a real time alike graph (through jQuery flot).
I’m looking for a text dealing with this sort of problems. To be more precise: algorithms, statistical math for finding least significant points (if that would be a good idea), general ideas on dealing with this sort of problem. If a text were available on the net that be great. Reference to a book would do also.

  • 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-05-13T09:51:57+00:00Added an answer on May 13, 2026 at 9:51 am

    Reading the apha beta pruning article on Wikipedia I came up with this idea:
    The least significant point is the point where the smallest change took place. In the data array that would be the difference between arr[i-1] and arr[i+1]. Then it’s easy to find i:

    var smallest = 10000; // large to start with
    var rememberI = 0;
    function prune(arr){
        for(i in arr){
            if(i > 0 && i < arr.length){
                var test = arr[i+1] - arr[i-1];
                if(test < smallest){
                    smallest = test;
                    rememberI = i;
                }
            }
        }
        return rememberI;
    }
    

    I haven’t tested it yet, but it looks like a promising idea.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.