Questions tagged [sample-data]

Sample data is a term used for publicly available sets of data in a variety of formats.

Sample data is used to get an application started quickly with data for demo purposes or to load test an application or database platform. The data held within may accurately represent a data set, such as a list of countries or be completely manufactured.

The idea is that is it not used as a basis of a good data sample, but merely useful as 'data'.

Examples include (but not limited to) CSV, Database Backups, Excel or plain text files. The OP would usually specify the format that they require in their question.

151 questions
141
votes
5 answers

Sample datasets in Pandas

When using R it's handy to load "practice" datasets using data(iris) or data(mtcars) Is there something similar for Pandas? I know I can load using any other method, just curious if there's anything builtin.
canyon289
  • 3,355
  • 4
  • 33
  • 41
50
votes
7 answers

Sample database for exercise

I would like to play with a larger database to test my knowledge on SQL. Is there a huge .sql out there that I can use to play with SQL queries?
n00ki3
  • 14,529
  • 18
  • 56
  • 65
42
votes
7 answers

where to get csv sample data?

As part of my development I need to process some .csv files. For what it matters I am writing a super fast CSV parser in java I would like to ask if somebody can name some websites where I can find some good csv files so I can test my app. Please…
chacko
  • 5,004
  • 9
  • 31
  • 39
31
votes
6 answers

Sample database for PostgreSQL

I am looking for a sample database (schema+data) for PostgreSQL 9. Is there a repository somewhere for sample databases?
H-H
  • 4,431
  • 6
  • 33
  • 41
19
votes
7 answers

How to find thousands of company names?

How can I find or generate thousands of company names for testing and demo purposes? (Address, phone number, and related information would be nice too.) I've got a system I'm building which includes business contact information. Pretty common no…
Steve Scheffler
  • 3,706
  • 2
  • 21
  • 22
15
votes
3 answers

Magento2 : how to reinstall magento setup?

I am installing magento2 with sample-data. all requirement is completed and the Magento installation process starts but stops after some process. I have to wait for the complete installation process but nothing happens. so I need to restart my…
Suresh Chikani
  • 948
  • 2
  • 9
  • 23
10
votes
3 answers

Alternatives to CKAN

Are you aware of alternatives to CKAN? I am searching for a metadata managing portal software with a similar feature set like CKAN. The implementation would preferably be either LAMP or Java.
Timo Westkämper
  • 21,824
  • 5
  • 78
  • 111
9
votes
2 answers

Use Sample data directory from a library

I created Sample data directory for my Android app using the process described in this article. I would like to share this set of sample data between my projects, so I created a library that only has sample data inside. But as far as I can see…
Vladimir Jovanović
  • 2,261
  • 2
  • 24
  • 43
9
votes
5 answers

Alternatives to Northwind

Well, what alternative sample databases exist that have: an un-restrictive license loads of sample data lots of data types a simple mechanism for adding the database to a db server are not Northwind I'm not too fussed what server type (MSSQL,…
grenade
  • 31,451
  • 23
  • 97
  • 126
8
votes
2 answers

How do I "pickle" instances of Django models in a database into sample python code I can use to load sample data?

How do I "pickle" instances of Django models in a database into sample python code I can use to load sample data? I want to: 1) Take a snapshot of several hundred records that I have stored in a MySQL database for a Django project 2) Take this…
MikeN
  • 45,039
  • 49
  • 151
  • 227
8
votes
6 answers

Where can I get large sample TFS repositories?

I'm building a tool to integrate with TFS and it needs to properly parse TFS logs (from the tf.exe history command) and checkout different revisions (again using tf.exe). It works great on the test TFS server I have, but I want to test it on a broad…
mcobrien
  • 1,130
  • 1
  • 9
  • 16
8
votes
4 answers

Can't create Sample Data Directory - Android Studio

I"m trying to Create a sample data directory, using Android Studio, by clicking on app in the project view and then right mouse click to find the menu item New > Sample Data Directory. It is not working.
mcarmel90
  • 129
  • 1
  • 6
8
votes
2 answers

How do I create collections of sample data in Blend?

Let's say I have a class Person: public class Person { public string Name {get; set;} public int Age {get; set;} } I would like to create some sample data in Blend to help me design my user interface visually. I choose to create sample…
Adam Barney
  • 2,377
  • 3
  • 18
  • 24
8
votes
3 answers

How can I know training data is enough for machine learning

For example: If I want to train a classifier (maybe SVM), how many sample do I need to collect? Is there a measure method for this?
tidy
  • 4,747
  • 9
  • 49
  • 89
7
votes
1 answer

Sampling Permutations of [1,2,3,...,N] for large N

I have to solve the Travelling Salesman Problem using a genetic algorithm that I will have to write for homework. The problem consists of 52 cities. Therefore, the search space is 52!. I need to randomly sample (say) 1000 permutations of range(1,…
inspectorG4dget
  • 110,290
  • 27
  • 149
  • 241
1
2 3
10 11