Tagged Questions

Data is any form of information that can be used by a process, service, or application.

learn more… | top users | synonyms

54
votes
12answers
7k views

Workflow for statistical analysis and report writing

Does anyone have any wisdom on workflows for data analysis related to custom report writing? The use-case is basically this: Client commissions a report that uses data analysis, e.g. a population ...
54
votes
11answers
7k views

Tools for Generating Mock Data?

I'm looking for recommendations of a good, free tool for generating sample data for the purpose of loading into test databases. By analogy, something that produces "lorem ipsum" text for any RDBMS. ...
47
votes
23answers
1k views

Detecting database tampering, is it possible?

Long time listener, first time caller. 'Say you have a database table that is responsible for logging user activity. The integrity of this log is important, so you want to be able to detect if ...
42
votes
19answers
2k views

Where can I find free and open data?

Sooner or later, coders will feel the need to have access to "open data" in one of their projects, from knowing a city's zip to a more obscure information such as the axial tilt of Pluto. I know ...
39
votes
6answers
2k views

Principles for Modeling CouchDB Documents

I have a question that I've been trying to answer for some time now but can't figure out: How do you design, or divide up, CouchDB documents? Take a Blog Post for example. The semi "relational" way ...
38
votes
9answers
31k views

How do you truncate all tables in a database using TSQL?

I have a test environment for a database that I want to reload with new data at the start of a testing cycle. I am not interested in rebuilding the entire database- just simply "re-setting" the data. ...
35
votes
3answers
42k views

How do you post to an Iframe?

How do you post data to an iframe?
28
votes
6answers
20k views

MVC - Passing Data with RedirectToAction()

What I'm attempting to do is take the data entered into an MVC user form and submit it back to the user in a different view. I have a private variabled declared in the class: IList<string> ...
27
votes
16answers
3k views

Datasets for Running Statistical Analysis on

What datasets exist out on the internet that I can run statistical analysis on?
25
votes
10answers
2k views

Essential skills of a Data Scientist

What are the relevant skills in the arsenal of a Data Scientist? With new technologies coming in every day, how does one pick and choose the essentials? A few ideas germane to this discussion: ...
22
votes
13answers
1k views

Most used data wrangling methods/commands in R

This morning I was reading an interview with Bradford Cross of FlightCaster over on the DataWrangling blog. Bradford mentions in the interview that one of his biggest challenges has been the wrangling ...
21
votes
4answers
714 views

Real world typo statistics?

Where can I find some real world typo statistics? I'm trying to match people's input text to internal objects, and people tend to make spelling mistakes. There are 2 kinds of mistakes: typos - ...
20
votes
2answers
1k views

How does jQuery .data() work?

My Javascript knowledge is pretty limited. Instead of asking several javascript questions I got the "message" from Stack overflow and started using jQuery right away in order to save me some time. ...
20
votes
14answers
12k views

Are there any decent free Java data plotting libraries out there?

On a recent Java project, we needed a free Java based real-time data plotting utility. After much searching, we found this tool called the Scientific Graphics Toolkit or SGT from NOAA. It seemed ...
19
votes
1answer
10k views

How to convert NSMutableData to NSString on iPhone?

I received an NSMutableData from a server and now I want to convert it to an NSString. Any ideas about how to do this?
19
votes
13answers
3k views

What is the best way to implement soft deletion?

Working on a project at the moment and we have to implement soft deletion for the majority of users (user roles). We decided to add an "is_deleted='0'" field on each table in the database and set it ...
18
votes
1answer
545 views

With FireMonkey and its cross-platforms, where should I store my application data?

Usually, with Windows, I save my application's data in the user folder (%appdata%). For that, I use the function ExpandEnvironmentStrings which is linked to Windows to get the folder I need, and I ...
18
votes
5answers
498 views

What are the risks of PHP sessions?

So everyone says that sessions have security risks, I want to know what kind of risks are these? What can hackers do with sessions? This is not about knowing how to avoid attacks, I want to know how ...
18
votes
2answers
3k views

Evaluating HDF5: What limitations/features does HDF5 provide for modelling data?

We are in evaluating technologies that we'll use to store data that we gather during the analysis of C/C++ code. In the case of C++, the amount of data can be relatively large, ~20Mb per TU. After ...
17
votes
7answers
649 views

Haskell shying away from probabilistic data structures?

If you search for skips lists implemented in Haskell, you won't find many. It is a probabilistic data structure needing a random number generator, meaning that any of these structures would need to ...
15
votes
4answers
648 views

Useful stock SQL datasets?

Does anyone know of any resources that provide good, useful stock datasets? For example, I've downloaded a SQL script that includes all of the U.S. states, cities, and zipcodes. This saved me a lot ...
14
votes
8answers
9k views

Peak detection of measured signal

We use a data acquisition card to take readings from a device that increases its signal to a peak and then falls back to near the original value. To find the peak value we currently search the array ...
13
votes
8answers
1k views

Persisting data suited for enums

Most projects have some sort of data that are essentially static between releases and well-suited for use as an enum, like statuses, transaction types, error codes, etc. For example's sake, I'll just ...
13
votes
7answers
14k views

C# beginner help, How do I pass a value from a child back to the parent form?

How do I pass a value from a child back to the parent form? I have a string that I would like to pass back to the parent. I launched the child using: FormOptions formOptions = new FormOptions(); ...
13
votes
7answers
6k views

Data Auditing in NHibernate and SqlServer

I'm using NHibernate on a project and I need to do data auditing. I found this article on codeproject which discusses the IInterceptor interface. What is your preferred way of auditing data? Do you ...
12
votes
6answers
248 views

How should be my Service method signature?

I'm using a Service Layer, and until now I used a ServiceObject (which implements ArrayAccess, Iterator, Countable) but I'm wondering if it's a good ideas. Would you do: ...
12
votes
4answers
1k views

How to load data quickly into R?

I have some R scripts, where I have to load several dataframe in R as quickly as possible. This is quite important as reading the data is the slowest part of the procedure. E.g.: plotting from ...
12
votes
4answers
202 views

How to Manage a dataset together with an application?

The application's code and configuration files are maintained in a code repository. But sometimes, as a part of the project, I also have a some data (which in some cases can be >100MB, >1GB or so), ...
12
votes
11answers
553 views

A database of questions with unambiguous numeric answers

I (and co-hackers) are building a sort of trivia game inspired by this blog post: http://messymatters.com/calibration. The idea is to give confidence intervals and learn how to be calibrated (when ...
11
votes
2answers
737 views

Optimal two variable linear regression calculation

Problem Am looking to apply the y = mx + b equation (where m is SLOPE, b is INTERCEPT) to a data set, which is retrieved as shown in the SQL code. The values from the (MySQL) query are: SLOPE = ...
11
votes
7answers
768 views

Introduction to Java Graphics Libraries

I just got into information-visualization and scientific-visualization and have been using Piccolo and a little with JFreeChart. I am trying to find a few new libraries that I can start using. I am ...
11
votes
19answers
4k views

Where can I find data on used car makes and models?

I'm looking into developing a used cars web app, but I've searched and I cannot find any avaliable database for download (paid or free) that contains all the makers and models of automobiles. How ...
11
votes
3answers
2k views

Why is marshal so much faster than pickle?

From this question and my own benchmarks it seems that the marshal module is about 20-30x faster than cPickle. Why is this so? What functionality does cPickle offer over marshal that justifies this? ...
11
votes
6answers
10k views

Client/JS Framework for “Unsaved Data” Protection?

Hey all- we have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability ...
10
votes
2answers
239 views

What is the difference between a string and a byte string?

I am working with a library which returns a byte string and I need to convert this to a string. Although I'm not sure what the difference is - if any. Could someone please explain. Thanks.
10
votes
5answers
181 views

Quick Sending of 4[GB] To Be Processed From 100 Machines?

I have 100 servers in my cluster. At time 17:35:00, all 100 servers are provided with data (of size 1[MB]). Each server processes the data, and produces an output of about 40[MB]. The processing time ...
10
votes
2answers
365 views

How to merge two data frames on common columns in R with sum of others?

R Version 2.11.1 32-bit on Windows 7 I got two data sets: data_A and data_B: data_A USER_A USER_B ACTION 1 11 0.3 1 13 0.25 1 16 0.63 1 17 0.26 2 11 0.14 2 14 0.28 data_B USER_A USER_B ACTION 1 ...
10
votes
4answers
218 views

max integral type in c#

I can't seem to find an integral type that this will work on: string foo = "9999999999999999999999999999999999999999999999999999999"; long value; if(long.TryParse(foo, out value)) { // do ...
10
votes
4answers
493 views

Generating multidimensional data

Does R have a package for generating random numbers in multi-dimensional space? For example, suppose I want to generate 1000 points inside a cuboid or a sphere.
10
votes
16answers
1k views

Is it compulsory to learn about Data Structures if you want to be a Java/C++ programmer?

So do I like really need to learn about them ? Isn't there an interesting way to learn about stacks, linked lists, heaps ,etc ? I found it a boring subject. **While posting this question it showed ...
10
votes
14answers
586 views

Java Time Savers

I find the nature of this question to be quite suited for the practical-minded people on Stackoverflow. I'm setting out on making a rather large-scale project in Java. I'm not going to go into ...
10
votes
3answers
3k views

jQuery - filter element based on .data() key/value

Say I have 4 div elements with class .navlink, which, when clicked, use .data() to set a key called 'selected', to a value of true: $('.navlink')click(function() { $(this).data('selected', true); }) ...
10
votes
2answers
4k views

How to “flatten” or “collapse” a 2D Excel table into 1D?

I have a two dimensional table with countries and years in Excel. eg. 1961 1962 1963 1964 USA a x g y France u e ...
9
votes
3answers
196 views

Key-value stores for medium to large values

We have a system that stores (single-digit) millions of images, varying in size from 8KB to 500KB, median around 15KB, average 30KB. The total data set is currently around 100GB. We want to access the ...
9
votes
2answers
100 views

Data Modeling: Is it always necessary to use an intersection table?

Consider the following: I have two tables (Customers and Cases) defined as follows: **Customers** CustomerId (PK) CustomerName CustomerPhone **Cases** CaseId (PK) CaseManager CaseNotes Each ...
9
votes
2answers
2k views

Server-side validation of a REQUIRED String Property in MVC2 Entity Framework 4 does not work

I'm trying to get server-side validation of an Entity Framework String Property to work. Other server-side validation such as data type validation and required dateTime and numeric EF properties are ...
9
votes
3answers
193 views

Managing Data Dependecies of Java Classes that Load Data from the Classpath at Runtime

What is the simplest way to manage dependencies of Java classes to data files present in the classpath? More specifically: How should data dependencies be annotated? Perhaps using Java annotations ...
9
votes
4answers
319 views

Fantasy names database

I am building a demo dataset for my webapp. I would like thousands of "real looking" names. They should not be names of famous people or fiction heroes or names that will evoke associations. They ...
9
votes
3answers
1k views

What's the difference between std::string::c_str and std::string::data?

Why would I ever want to call std::string::data() over std::string::c_str()? Surely there is some method to the standard's madness here...
9
votes
4answers
1k views

Online database dumps for the public

You may want to dig into that kind of data for fun, to impress your friends, to gather statistical data, to test algorithms, or whatever. My two favorite database dumps: Stack Overflow data dump. ...

1 2 3 4 5 83