A programming paradigm in which the program statements describe the data to be matched and the processing required rather than defining a sequence of steps to be taken.
Questions tagged [data-driven]
181 questions
1
vote
0 answers
Data-driven cluster colour with mapboxgl
I am trying to draw circle which colour depends on a "group" attribute in my geojson. I followed a simple example with these colours:
map.addSource("data", {
type: "geojson",
data: url,
cluster: true,
clusterMaxZoom: 12, // Max zoom…

LBes
- 3,366
- 1
- 32
- 66
1
vote
2 answers
How to pass parameters of endpoint through excel in Rest-assured
I want to Pass the parameter "Country" with different countries names. Is it possible to keep all the country names in excel and call those from the datafile.
RestAssured.given()
.pathParam("country", "Finland")
.when()
…

Mahesh
- 21
- 1
- 1
- 5
1
vote
1 answer
Trigger SSRS Data Driven Subscription - with Parameters supplied
I have an SSRS (2016) report that accepts a date parameter. The user selects a date and the report runs and returns one page per customer. The report also has a data driven subscription which when triggered, emails the output relevant to the…

Harry
- 2,636
- 1
- 17
- 29
1
vote
0 answers
SSRS - Data Driven Subscription, avoid using special character in filename. There are no special characters
I'm using SSRS Data Driven subscriptions to produce 300,000+ word documents (.docx).
The majority are being produced fine however, some are reporting an error of
The filename is invalid. Avoid using special characters such as /\?*<>:|+,[]"&
All…

Nick Lea-Trengrouse
- 43
- 1
- 3
1
vote
0 answers
JHipster and Data driven user interface
I have a question on how to use JHipster to create dynamically data driven user interface.
I would like to build a system where
a Manager can create Type of elements, descripbed with a list of
property (name,type)
and then an USER can register a…

flefevre
- 57
- 1
- 11
1
vote
0 answers
Designing a mergable data format
When making data driven applications in large groups of collaborators comprised of different disciplines (eg. when making games), we often have to decide what format we are going to store that data in.
XML is notorious in it's inability to merge,…

Alan Wolfe
- 615
- 4
- 16
1
vote
0 answers
reportlab dynamic data-driven header outputs wrong subtitle
I have created some fictitious, though representative, clinical trial type data using Pandas, and now come to some test reporting in ReportLab.
The data has a block (~50 rows) where the treatment column is 'Placebo' and the same amount where the…

Gurnemanz
- 31
- 3
1
vote
1 answer
Angular 2. Set value of ControlGroup in data driven form
Let's say I have this model:
export class MyModel {
constructor(
public id: number,
public name: string
) {}
}
and this ControlGroup:
export class MyComponent {
form: ControlGroup;
model: MyModel;
…

rook
- 2,819
- 4
- 25
- 41
1
vote
4 answers
Can you send dynamic data to a processing applet?
I have an ajax page which pulls data from a database. I'd like to add a processing applet to visualize the data but i can't figure out how to update the visualization as the data changes. The idea is to be able to push new data into the…

Bryan
- 153
- 1
- 7
1
vote
0 answers
how to implement a third party plugin e.g IAP, Ad Network, Social Sharing with ECS/DOD.
I have started looking into ECS recently for game development. Til now I used and fancied OOP and patterns for code separation, ECS also does so but in another way.
I'm getting my head over designing data in ECS. I seems logical for game related…

gamer
- 105
- 11
1
vote
2 answers
How to assert decimal Excel value with the web value using Selenium WebDriver?
The value mentioned in the Excel file is 21.650 and same value is presented on the page. But when script executes, it reads Excel value as 21.65 and my assert condition becomes false.
List rowValue = new List { };
var ExcelFilePath =…

geeta
- 75
- 1
- 1
- 8
1
vote
1 answer
ASP.NET 4.0 Database Created Pages
I want to create ASP.NET 4.0 dynamic pages loaded from my MS SQL server. Basically, it's a list of locations with information. For example:
Location1 would have the page www.site.com/location/location1.aspx
Location44 would have the page…

Landmine
- 1,759
- 6
- 39
- 60
1
vote
1 answer
D3 Zoom behavior
I'm trying to use D3 Zoom behavior for my scatter plot graph. I have research around online and this is the most simple method that I could implement for my graph.
But I am having some problems with my codes.
It's only when I added this code
var…

user3766044
- 23
- 6
1
vote
1 answer
How to handle API differences when developing a data driven renderer?
I'm working on a real-time renderer engine for a game (https://github.com/ghostec/White). I was implementing it using an OOP approach. However, after reading about data-driven programming, I'm tempted to rewrite my code using this paradigm.
I was…

Yuri A. Brito
- 231
- 2
- 10
1
vote
1 answer
correlation coefficient data driven approach possible?
I have a matrix 64x64x32x90 which stands for pixels at x,y,z, at time t.
I have a reference signal 1x90 which stands for the behavior I expect for a pixel at some point (x,y,z).
I am constructing a new image of the correlation between each pixel…

Shabbir Hussain
- 2,600
- 2
- 17
- 25