Questions tagged [dummy-data]

Placeholder used for operational or testing purposes.

Dummy-data is useless information reserving a operational information is normally present.

Dummy-data may also be used in testing to properly initialize values which are not intended to be evaluated by the test.

http://en.wikipedia.org/wiki/Dummy_data

164 questions
1
vote
0 answers

Selenium mock server access

I have a website that I want to test using Selenium WebDriver (version 2.28), and to integrate it with my CI (Maven and Hudson). The thing is that in order to properly test the front-end, I need to access the server (for the actual HTML and for REST…
user658693
  • 29
  • 4
1
vote
1 answer

NA's produced when implementing dummy variables along with a time trend variable in R

I have a model which contains a time trend variable for 7 years (so 2000=1,2001=2,...,2006=7) as well as having dummy variables for 6 of the years (so one binary variable for each of the years excluding 2000). When I ask R to fit this linear model:…
user1836894
  • 293
  • 2
  • 5
  • 18
0
votes
1 answer

Dummy data with Factory Girl

How can I set up dummy data with FactoryGirl? Is there a way to set up dummy data with a factory in my integrated development environment?
bulleric
  • 2,077
  • 6
  • 21
  • 36
0
votes
1 answer

Creating a matrix of dummies for each hour in R?

My data set spans over a year. This first had quarter hours, which I then aggregated into hours. So now I have 8760 hours, which means always 0 to 23 per day. I would like to create now for a linear regression, a dummy matrix which contains 24 rows…
momo
  • 5
  • 3
0
votes
0 answers

How can I generate test files with specific extensions and sizes for my application's upload feature?

I need to generate files with different extensions like .jpg, .png, .pdf, .csv, .docx, .xslx etc. so I can test uploading files in my application. I need a quick solution here. I tried to create files by terminal but these files contain null bytes.…
Oleandra
  • 1
  • 1
0
votes
1 answer

ASP.Net Core When add Migration only 1 time seed data

For example, when adding migration; When adding migrations like mig 1, mig 2, mig_3, the seed data (same data) is added to the database again and again during each addition, can I prevent this and add only one seed data data once and add as many…
0
votes
0 answers

React native importing image from dummy data

i am new to react native and will appreciate some guidance. Could one kindly let me know how to retrieve images from my dummy data i am call images from dummy-data is this way 'require(\'../../assets/images/imgUser01.png\')' but it does not seem to…
ARTLoe
  • 1,743
  • 2
  • 21
  • 54
0
votes
0 answers

How to remove dummy dates on a excel chart

I have a problem with dummy dates on my chart, anyone to assist me I want to remove 1 December to 05 December since they are not in my data
Pomwene
  • 1
  • 1
0
votes
3 answers

How to change header text when item id is change in Flatlist in react native

App.js import React from 'react'; import { SafeAreaView, View, FlatList, StyleSheet, Text, StatusBar, } from 'react-native'; const DATA = [ { id: '1', title: 'First Item', }, { id: '1', title: 'First Item', }, …
user19534405
0
votes
1 answer

Populate NGRX store on load with dummy data only in development mode (eg: ng serve)

I want to populate NGRX store with initial dummy data when ng serve, so my devs who are working on the app don't have to comment/uncomment out mock data manually while they are developing. I have a JSON file with mock data, I just want to know what…
0
votes
1 answer

PostgreSQL: Create/Select a fake/dummy column

How would i write a query so that i can generate myself a column with some specific numbers? I would prefer not to be forced to create a table and import from excel, nor insert values (as i have many numbers to put into that column, and i'll have to…
santee
  • 29
  • 6
0
votes
2 answers

Automatically change the Nth value of a 100+ line long SQL script for automatically inserting dummy data

I have a long SQL script that I'm converting from MySQL syntax to Postgres. There are about 100+ lines of script for inserting dummy data that look like this: INSERT INTO product (sku, name, description, image_url, active,…
kodazys
  • 129
  • 1
  • 1
  • 9
0
votes
1 answer

Shopify Data Population

As a Developer, I want to add the dummy data to store. When I Add my theme to a new store, I want to populate all data as it is, like the previous store, images, navigations, collections, products, pages, etc. is there any way to do this in Shopify…
0
votes
1 answer

Replace Text in XML files with placeholder text

I performed text mining on files that I am preparing for publication right now. There are several XML files that contain text within segments (see basic example below). Due to copyright restrictions, I have to make sure that the files that I am…
macright
  • 17
  • 4
0
votes
1 answer

Using Spring Boot WebClient to call a dummy api to postman

I am missing something here. I am attempting to pull information using Spring Boot WebClient from a Dummy Api that's an Http request. I am not getting any info pulled when I go into postman. Thanks for any insight you can give me. I am still very…