Holy shit, it's 2018 2019 2020 2021 2022 2023 2024, and the US isn't a fascist country! What a time to be alive.
0 Members and 1 Guest are viewing this topic.
Yeah, I want to simply visualize a huge series of numbers so I can see how they're laid out. Let's say they're user ids from a certain social networking site, and I'm curious how they choose user ids so we can save time when doing a full brute force. In theory. Statistics are okay, as long as it can handle 170 million lines. Linux friendliness would be nice.
I'm not really familiar with MATLAB. Can it do what I need?
Quote from: iago on August 08, 2010, 09:57:01 pmYeah, I want to simply visualize a huge series of numbers so I can see how they're laid out. Let's say they're user ids from a certain social networking site, and I'm curious how they choose user ids so we can save time when doing a full brute force. In theory. Statistics are okay, as long as it can handle 170 million lines. Linux friendliness would be nice. Well, SPSS is (iirc) a pay-to-use program and I can't recall how expensive it is. If you want to do statistics based on names vs. uid's, etc etc, SPSS is probably one of the easiest ways to go about it. I've used it a couple times and it has a pretty steep learning curve but that shouldn't be a problem for you.
QuoteI'm not really familiar with MATLAB. Can it do what I need?MATLAB can graph numbers if that's what you're looking to do.
http://www.r-project.org/
MATLAB can graph numbers if that's what you're looking to do.
I have 170,000,000 numbers, sorted, and I want to visualize the growth. Does anybody know a tool that can handle that much data?
set term 'png'set output 'myplot.png'set gridset xlabel 'x'set ylabel 'y'# Simple 2D plot (with connected lines) using columns 1 and 2 of a space-delimited file as x and y respectively.plot 'mydata' using 1:2 title 'Baby Cow Population' w lines