The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
71 views

How does Hadoop dfs.replicate work?

I have a 2 node hadoop (1 is the master/slave and another slave) setup and 4 input files each of size 1GB. When i set dfs.replicate to 2, then the entire data is copied over to both the nodes which is ...
2
votes
1answer
50 views

Is there a way to access the iteration number in replicate()?

Is there some way to access the current replication number in the replicate function so I can use it as a variable in the repeated evaluation? For example in this trivial example I'd like to use the ...
0
votes
1answer
94 views

R: Replicating a loop or function multiple times and adding results to data frame for each time

I've written an R loop and turned it into a function that takes in a dataframe, The original code and data frame are below. The goal is to repeat out this function or loop 1000 times and end up with a ...
2
votes
2answers
112 views

R data.table efficient replication by group

I am running into some memory allocation problems trying to replicate some data by groups using data.table and rep. Here is some sample data: ob1 <- ...
0
votes
0answers
15 views

couchdb replication of _design/render

I tried to replicate the _design/render with the following: { "source": "icons", "target": "http://source:5984/icons", "doc_ids": [ "_design/render" ]} am getting the error:only reserved document ...
0
votes
0answers
89 views

Replicate an import procedure for many files in Rapidminer

I was just wondering how can I replicate the settings and attributes set in am import procedure of Rapidminer (for instance importing a .csv file), to many files with the same column and attribute ...
0
votes
1answer
90 views

Comparing and replicating/merging data for similiar rows in Excel

I've got a really specific and tricky situation in excel. Basically I've been tasked to take 10 different itterations of outlook contact backups and merge them together. What i have at the moment ...
3
votes
3answers
112 views

Repeating a user-defined function using replicate() or sapply()

I have defined a custom function, like this: my.fun = function() { for (i in 1:1000) { ... for (j in 1:20) { ... } } return(output) } which returns ...
-1
votes
1answer
78 views

generate increasing sequence in R [duplicate]

Possible Duplicate: Sequence of Repeated Values in R I'm trying to generate an increasing sequence in R, with a total length of 5952. I have been writing it out by hand but I suspect there ...
1
vote
2answers
69 views

Share or replicate Couchdb to Mysql

I'm trying on a piece of software the uses couchdb. I'm not a coder, I don't understand how couchdb works, etc... So for that software, I wanted to use a website in php, that was built to work with ...
3
votes
2answers
104 views

Replicate() verses a for loop?

Does anyone know how the replicate() function works in R and how efficient it is relative to using a for loop? For example, is there any efficiency difference between... means <- ...
2
votes
2answers
163 views

How are BRR weights used in the survey package for R?

Does anyone know how to use BRR weights in Lumley's survey package for estimating variance if your dataset already has BRR weights it in? I am working with PISA data, and they already include 80 BRR ...
1
vote
1answer
198 views

Replicate cell in excel

Does anyone know if there is a way to replicate a cell exactly in excel, so that it has both the same value and same format? So that if the format of the 'parent' cell changes (through conditional ...
0
votes
2answers
51 views

Fastest method of producing a copy of a MySQL database

We have a very large database that we need to occasionally replicate on our dev+staging machines. At the moment we use mysqldump and then import the database script using "mysql -u xx -p dbname < ...
0
votes
2answers
498 views

Replicate Tab Character in C#

After searching the web and reading docs on MSDN, I couldn't find any examples of how to replicate a tab character in C#. I was going to post a question here when I finally figured it out... I'm ...
0
votes
1answer
213 views

Repeating value of some matrix

I have matrix A = [ 5 6 7; 7 5 6 ] B = [ 1 2 3; 3 1 2 ] C = [ 1 0 2; 0 2 1 ] Start time A = [ 2 3 7; 1 6 8 ] Start time C = [ 1 0 5; 0 4 7 ] ...
2
votes
2answers
1k views

How to use functions like repmat, replicate, or kron in MATLAB

I want to convert the matrix b: b(:,:,1) = 1 b(:,:,2) = 3 b(:,:,3) = 5 to matrix c: c(:,:,1) = 1 1 1 1 c(:,:,2) = 3 3 3 3 c(:,:,3) = 5 5 ...
1
vote
3answers
147 views

Repeating a repeated sequence

We want to get an array that looks like this: 1,1,1,2,2,2,3,3,3,4,4,4,1,1,1,2,2,2,3,3,3,4,4,4,1,1,1,2,2,2,3,3,3,4,4,4 What is the easiest way to do it?
1
vote
2answers
192 views

MongoDB replicates data to all shards

I have 4 servers in a test environment which I use to test MongoDB replica and distribution: RepSetA holds RepSetA1 and RepSetA2. RepSetB holds RepSetB1 and RepSetB2. All servers act as routers, ...
1
vote
0answers
161 views

Replicating data between two databases with NHibernate

Good evening everyone. I'm looking for a way to replicate data between two database, would select some (or all) tables, probably all the data that are determined within these tables, and copy it to ...
1
vote
1answer
127 views

How do I combine tapply with a function that includes replicate, sample and sum?

I have a csv file which has details about students and their weights from different schools e.g. School School code Weight Age Height A 1 91 15 1.6 A 1 60 16 2.0 B 2 61 14 1.8 B ...
1
vote
1answer
559 views

MySQL Replication - Trigger wont replicate to slave

Ok here is my scenario Server running master DB with other DB's for each site also on server. an update is written to master DB, and a trigger inserts this record into the relevant DB for a specific ...
2
votes
1answer
331 views

Haskell ReplicateM IO

I'm trying to create a function which allows the user to input a list of strings. The function takes the length and allows the user to input length-1 more lines. Then each line is checked to ensure it ...
0
votes
1answer
164 views

HBase and scaling reads

I have an HBase cluster with a replication factor of 3. I'm trying to improve read performance so I can have more 'Get's per second. When I bench marked Gets (reads), I set up a connection to HBase ...
1
vote
4answers
264 views

Repeat a table multiple times on same page

I have a fairly complicated html table containing lots of PHP, CSS etc., and it comprises about 200 lines of code. I need to reproduce the table in three different areas on my webpage. What is the ...
8
votes
2answers
1k views

replicate and

In the documentation of sapply and replicate there is a warning regarding using ... Now, I can accept it as such, but would like to understand what is behind it. So I've created this little contrived ...
11
votes
2answers
4k views

How to duplicate a MySQL database on the same server

I have a large MySQL database, lets call it live_db, which I want to replicate on the same machine to provide a test system to play around with (test_db), including table structure and data. In ...
2
votes
2answers
216 views

Common Lisp equivalent of Haskell's replicate?

replicate is a function that takes an integer and a sequence and returns the sequence repeated n times. E.g. replicate 3 ["a"] returns ["a", "a", "a"] Does Common Lisp have an equivalent function, ...
1
vote
2answers
722 views

Problem defaultCache and cache in distributed environment (Inconsistent data)

Using the same configuration, with only defaultCache, I get inconsistent data (case A). But if I add an additional cache entry will not get those errors of inconsistency (case B). Do you know why? I ...
1
vote
1answer
221 views

Why I can't read replicate data in MongoDB?

I have created a replica Set with 4 MongoD running. port: 2017, 2018, 2019, 2020 Very standard. I followed the instruction as in the documentation. Then I set 2020 be the primary one. And then I ...
1
vote
2answers
632 views

SQL Server : LENGTH() inside of REPLICATE()

I have a SQL Server table with the columns Lvl and Title. I need to insert a "-" in front of the title for every character in the Lvl field. As an example: If Lvl = 111 the title should become --- My ...
1
vote
1answer
87 views

how do I re-duplicate sql server database?

I would like to stress test my database, which is a hospital patient database. The current one is 2 GB. I would like to have a 100GB database, so I would like do the following: 1) read each patient ...
0
votes
1answer
79 views

Have a SVN checkout location connected to Codeplex and propagate updates to another develpment location connected to another SVN repository

I would like to checkout a read only SVN projects (e.g. from Codeplex) to a folder on my local disk, open the solution (let's say I am getting Dotnetnuke and open it's solution, add some projects to ...
2
votes
1answer
320 views

R: When using the rep(..,..) to replicate 1020 a character variables, the result contains just 1019 replicates?

When programming within the R environment I used rep("[35,40)",1020). This should give me a list with 1020 times "[35,40)". However, the result contains only 1019 of these elements. The programming ...
2
votes
2answers
861 views

Perl Hash Slice, Replication x Operator, and sub params

Ok, I understand perl hash slices, and the "x" operator in Perl, but can someone explain the following code example from here (slightly simplified)? sub test{ my %hash; @hash{@_} = (undef) x ...
5
votes
1answer
2k views

How can you replicate each row of an R data.frame and specify the number of replications for each row?

df <- data.frame(var1=c('a', 'b', 'c'), var2=c('d', 'e', 'f'), freq=1:3) What is the simplest way to expand the first two columns of the data.frame above, so that each row appears the number of ...
4
votes
2answers
1k views

Element-wise array replication according to a count

My question is similar to this one, but I would like to replicate each element according to a count specified in a second array of the same size. An example of this, say I had an array v = [3 1 9 4], ...
0
votes
2answers
228 views

How can I replicate a table from SQL 2000 to SQL 2008?

I have a table on a SQL Server 2000 database, which I want copied verbatim to a 2008 server. I tried to do it manually with INSERT/UPDATE triggers, but this technique runs in a distributed ...
3
votes
7answers
3k views

How do I convert a 2X2 matrix to 4X4 matrix in MATLAB?

I need some help in converting a 2X2 matrix to a 4X4 matrix in the following manner: A = [2 6; 8 4] should become: B = [2 2 6 6; 2 2 6 6; 8 8 4 4; 8 8 4 4] How would I do ...
18
votes
15answers
2k views

How do you fix a bug you can't replicate?

The question says it all. If you have a bug that multiple users report, but there is no record of the bug occurring in the log, nor can the bug be repeated, no matter how hard you try, how do you fix ...