Displaying 1 result from an estimated 1 matches for "ds_id".
Did you mean:
dq_id
2004 Dec 16
1
PHP MySQL and R
....
How can this be acheived?
-------------
====Database Structure====
A list of points is called a Dataset.
We have a table called "Datasets" which simply holds all the Datasets:
DATASETS
id
title
and a table "Data" which holds all the points of all the datasets:
DATA
id
ds_id
x
y
lagged
The points of a Dataset can be found from this query: "SELECT
x,y,lagged FROM DATA WHERE ds_id=(whatever dataset)"
and the table "jobs"
JOBS
id
script (which r script to run)
dataset (which dataset to use)
status (queued, processing, or completed)
==============...