-
Notifications
You must be signed in to change notification settings - Fork 10
Manifesto
Handling complex data models sounds more attractive, but even simple ones can benefit from a really good data access layer API.
It is simpler to choose/search from a list of items than to attempt to traverse a relational data model or document store. Many times you simply don't know what you're looking for or when you do, you don't (and shouldn't) know where to look.
Merely having a data model and its constraints is not enough. The first barrier for users is figuring out what about the data they can search for. Humanize the data model by adding some descriptive love.
An intuitive and powerful search depends on the first two points mentioned above. The (highly descriptive) metadata as well as the structural metadata can be indexed and searched against directly. A match in this case would be particular data point whether it is for query or display purposes.
To make the search more robust, discreate data can be indexed and associated with each data point as well. As an example, if I type male
, the available query or view options may result in gender
. This enables users to find what they are looking for by directly searching for the a known data value. One caveat to this is regarding permissions. If certain end are not allowed to view certain data, a match occuring from typing male
would potentially mean there are male
data values.
Databases have data types to allow for fast and effective search on data. For example, you cannot query the string hello world
using a numerical operator (as least in a way that makes sense). For this reason, data are split up into multiple fields suting the needs of the data. For example when you view a cooking recipe, you would expect to read an ingredient such as 2 teaspoons of salt. What would happen if you only knew the ingredient name i.e. salt? You wouldn't know how much of the ingredient you need. Likewise if you only saw teaspoons without 2, you would not know the quantity of salt to add.
The power of the database comes from storing and indexing discrete values which enables fast search and sorting capabilities. Humans however need to be able to view these discrete values in way that means something to them.
Large data sets should only benefit users in the sense that they have more data to explore. Similar to the comment on complexity.. small data sets will work just fine here as well.
The scale of the data must not tax its usability. Interfaces must be able to scale with the data transparently and not burden the user with too many options at once.
Most data should be looked at an aggregate level. If you choose the view gender data, the appropriate view is a series aggregate counts for male, female and unknown. This immediately gives the user a sense of the data. For example, if the are interesting in the male population, but the data set only has a few, they can make the decision to continue or not.
These statistics can be thought of as another set of metadata. This time it's computed from the data itself.
This goes hand-in-hand with displaying aggregate statistics. Use visuals such as histograms to display the distribution of data. This is particularly important for continuous data where simply listing min, max, mean, mode, standard deviation and variance is not good enough. Again, at this stage the goal is for a user to get a sense of the data before having to query or view it.
It's simple. Humans are more comfortable with the language and concepts they know and understand.
In the example above, a recipe ingredient was used as an example to convey the importance of context and being presented with all the necessary information. In most cases, data stored in a structured and constrained database system can be thought of raw data and does not lend itself well for presentation. This data needs to be grouped together (like the ingredient) and formatted appropriately for display. If the ingredient name
, quantity
and unit
were displayed out of order, that would cause confusion.
Next: Introduction
Contents
- Introduction
- Installation & Setup
- Getting Started
- What Next?
Guides
- Managing your metadata
- Persisting sets of objects
- Writing a custom Interface
- Writing a custom Formatter
- Cookbook
APIs
Proposals
Reference
Developers