The manipulation tag has no wiki summary.
0
votes
1answer
27 views
Python - modifying CSV Files from file path in text file
I am trying to write a simple python program (in Eclipse Juno using Pydev) to load multiple .CSV files to be copied and re-outputted via CSV. (eventually the "copy" feature will be replaced with ...
1
vote
3answers
38 views
JQuery: Retrieve and update SINGLE span value inside a (wordpress) loop
I've been struggling with this for two days, obviously because I have a very little knowledge in jQuery / Javascript, and I think I've searched thoroughly for so many times but didn't get the answer ...
0
votes
0answers
20 views
jq: how to turn select option field into text input field and back
I want to use one field in two different ways depending on whether the user wants to input data or select from the list. Is it technically possible in jquery?
0
votes
3answers
45 views
Manipulate array foreach
I have array 1 and it should be 2
Does anyone have an idea / solution?
Do i need foreach or for loop?
1.
Array
(
[0] => Array
(
[category_id] => 5
[category] => Pages
...
0
votes
1answer
26 views
PHP compare two objects with same properties but different properties values, get non-matching values
I have these two objects contained in a array:
array (size=2)
0 =>
object(stdClass)[20]
public 'name' => string 'John' (length=4)
public 'surname' => string 'D' (length=1)
public ...
1
vote
1answer
45 views
R: How to convert from lowercase to upper case all values in all character variables in dataframe
I have a mixed dataframe of character and numeric variables. I want to convert all the lower-case characters in the dataframe to uppercase. Is there any way to do this in one shot without doing it ...
0
votes
3answers
37 views
sed to replace comma outside parentheses
I have this partial SQL string.
select ID,to_char(ts2date(created_t),'DD-MM-YYYY'),name,segment_code from sometable
Using sed, I tried to replace any comma that reside outside the outmost ...
0
votes
2answers
32 views
How to add quotes to a string in shell script
I have a string for which i need to add quotes to a substring. How can i do that in shell scripting?
the string is
Database.Procedure(Frequency,P1,P2,P3)
I have to add single quotes around ...
0
votes
1answer
23 views
Re-running a jQuery plugin against updated DOM
I'm using a jQuery grid slider plugin that I'd like to run again after DOM manipulation.
I suspect my issue is similar to this - Any way to rerun a jQuery plugin after DOM modification? - but my ...
1
vote
1answer
72 views
Java String Split/Manipulation
I need to write a method in Java that can take a String text parameter and an array of String "regexes" parameter that returns an array of Strings.
I want the returned Array to basically do what ...
0
votes
2answers
34 views
Manipulating individual strings based on characters from an input in PHP
I'm wondering how to manipulate individual characters in a string in PHP. I've searched all over and can't find anything that answers this type of question. I want to take a string that's submitted ...
0
votes
0answers
16 views
What is the best open-source platform for building a chores-assignment project? [closed]
I'm willing to develop a chores-assignment project, which means that I have to manipulate data tables containing information about people's chores and so.
Is there an open-source project which can ...
-1
votes
2answers
30 views
Python - File manipulation using headings
How would I get python to run through a .txt document, find a specific heading and then put information from each line in to a list for printing? And then once finished, look for another heading and ...
0
votes
1answer
49 views
Manipulate data in Python
I have been working with mathcad for several years but it is not really suitable for data manipulation. I'm learning python and I would like to know how to manipulate data using a python script. ...
2
votes
0answers
29 views
Traversing and manipulating javascript object with arrays into single object matching a format
I've been racking my brains with this one, I've attempted to resolve this with a number of recursive functions with no joy so I thought I'd ask to see if anyone has any solutions.
I have an object ...
0
votes
1answer
50 views
matching a header in fasta file and naming with new names
I have a fasta file with different headers like this..
>Ar000001
>Ar000002
>Ar000003
and so on.. Now i would like to change the names to something like this
>Ar000001 => ...
0
votes
0answers
32 views
Manipulation Events imbrication
Context
I have writen two new Controls in my WPF project. One of them inherits from ScrollViewer and the other one from Button. Each of them overrides the OnManipulationStarting, OnManipulationDelta ...
0
votes
1answer
25 views
Data analysis/manipulation in excel [closed]
I'm new to excel and this might be a beginner question so please bear with me, I'm trying to do the following:
If I have some data in an excel sheet which goes like this -
-- Running case : ...
2
votes
2answers
64 views
read a string position
I'm struggling with a basic problem in python. I need to read a string at a certain position in order to modify it.
Example: for the string 'abcd' I want to read the 3rd position (2nd really because ...
0
votes
0answers
9 views
Is there a script or app that will allow me to match columns in a Google spreadsheet to template?
I have an empty Google spreadsheet with just columns assigned to be used as a template. What I am trying to accomplish is when someone sends me their excel file or shares with me their Google ...
1
vote
1answer
59 views
File to Hex to File in python 2.7
I'm trying to take a file and convert it's contents to hex, save that to a file, and then
convert the hex string back to ascii and save that to a file. The below method works, but adds an extra empty ...
0
votes
1answer
26 views
R: Using object's name to print what is inside the object
My question is a basic one concerning object type manipulation.
hello = 3
name = 'hello'
I'm looking for a function that allows me to find the value 3 by using only the object name.
Something ...
1
vote
1answer
84 views
create a run-only-once java application
I have to create a jar with a java application that fulfills the following features:
there are xml data packed in the jar which are read the first time the application is started. with every ...
0
votes
2answers
43 views
regex string manipulation - php
I want to write a function, which takes string1 as an input, grabs whatever the text is between two parameters, manipulates the grabbed string and then return the whole thing.
For example, let's say ...
0
votes
1answer
42 views
how to make a “train effect” with vertex manipulation?
Am trying to do this with three.js
I have this PlaneGeometry(a rectangle) and I want it to move along the vertexes of a CircleGeometry, just like a train on a rail.
any idea how to achive this ...
0
votes
1answer
29 views
How to create an ID field on bases of time separation in one column
I would like to separate the output from one of my modelling results into some kind of ID column. Since I have different particle tracks (n=15000) with varying nrow spacing i can not assume equal ...
0
votes
0answers
62 views
Image Smear Effect
Speaking in the least technical terms, remember when Windows XP would freeze and you could smear a window around the screen?
In Java, I am trying to draw pseudo 3D poker chip. Since I need the chip ...
0
votes
1answer
106 views
Removing rows and columns from matrix in Matlab
How should we efficiently remove multiple line and columns from a matrix in Matlab?
A vector holds indices that should be removed.
Input: t by t matrix
Output: (t-k) by (t-k) matrix in which k ...
3
votes
1answer
127 views
Java Image Manipulation
I have a project where I must manipulate an image in multiple ways. I am stuck on pixelation.
For pixelation I must take a 10x10 set of pixels and return one cell that has averaged the RGB colors out ...
0
votes
1answer
43 views
Subtract 1ms from PHP date
I'm reading a timestamp from a SQL database, the format is:
"27/06/2012 13:35:58.94769"
I can obtain a DateTime object using this format:
DateTime::createFromFormat('j/m/Y H:i:s.u', $sqlDate);
I ...
0
votes
1answer
28 views
Cannot Retrieve Cloned Div elements
For a slider project, I want to reach a child div inside a cloned div, but it seems not working:
<div class="slide">
<div class='slidecaption'><h2>Slide Number ...
2
votes
1answer
135 views
How to init d3 svg element from embeded extern svg-file and manipulate it
The svg document is embeded as file.
svg-file:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
...
0
votes
0answers
116 views
Win API: SetParent crashing windows, sizing wrong, etc… got any input?
I'm trying to attach certain windows to a backdrop windows form for multiple reasons, i'll post some online soon if i get them working. What I dug up was a Win API call named SetParent() , but this ...
0
votes
3answers
199 views
Changing random pixels in a picture, python
I want to write a function that will create a random number (between m and n, inclusive) of stars in the sky of this picture (http://tinypic.com/r/34il9hu/6). I want the stars should be randomly ...
1
vote
3answers
37 views
Extracting & manipulating an object from a jQuery collection
I'm using jQuery to create a typical collection of list items like so:
HTML
<ul id="slides">
<li>Slide 1</li>
<li>Slide 2</li>
<li>Slide 3</li>
...
2
votes
3answers
70 views
Django - Manipulating Data Posted from a form
I have a Django form all working fine, however I need to update one filed after the user has posted the form, I was thinking this should be done in the view? MY code is below for the view definition ...
1
vote
1answer
235 views
Delphi AnsiString Manipulation - PAnsiChar becomes corrupt?
I use the following approach to move through and manipulate an AnsiString. It works most of the time, but sometimes the pointer into the string quits functioning. Given the following code:
var
s: ...
1
vote
0answers
61 views
Manipulate an UIElementcollection in canvas
I'm drawing on a canvas panel some shapes that i have in a xml file.
But when i'm doing it, i'm drawing line by line. I would like to know if it is possible to use an UIElementCollection instead.
I ...
-1
votes
1answer
48 views
Play with data in a for loop
This isn't critical by any means, but I've got a loop through my users on my website, and i spit out data for each one, something like this
for( $i=1; $i<=999; $i++ ){
$varA = function_a( $i ...
0
votes
4answers
115 views
jQuery: Find and replace all attributes
I'm attempting to replace a specific portion of the input id's attribute and the label for's attribute within each(). However, when I check the rendering, only the input id's attribute has changed to ...
-1
votes
5answers
69 views
Getting Week for a given number from a String of the form `SunMonTueWedThuFriSat`
Ok, I am stumped here. I really looked into this and cant seem to find specifically what I am trying to do. I am two weeks into Java in school and new to programming so please pardon any errors I may ...
0
votes
1answer
44 views
re-assign jquery ajax capability to manipulated element
I have a function in JS called AssignAJAXEvents() with the following setup:
function AssignAJAXEvents(containerSelector)
{
containerSelector = containerSelector || 'body';
...
0
votes
0answers
309 views
Subscript out of bounds error when editing matrices in a list with lapply in R
I've written a function for a simulation which will - in general operation without being specific to the simulation scenario, duplicate or delete columns from a matrix based on two values which ...
4
votes
1answer
65 views
Rearranging the shape of multiple matrices in R
This is a double barreled R question. I have a folder of data sets (in .csv) and they need to be altered before analysis. Each data set is a 1X10 matrix like:
1 2 3 4 5 6 7 8 9 10
and need to ...
4
votes
1answer
113 views
PHP video manipulation?
I was wondering if there's a server-side script based solution for manipulating audio/video files? By manipulate, i mean encode/decode and slice video into multiple clips and encode/decode them etc..?
...
-1
votes
1answer
108 views
Xcode: How do I create an Image manipulation app? Move, resize and place an image [closed]
Hey I want to create an app that is similar to these 'face juggler' apps, and other apps in which a photo is taken of the user, then you can drag an image on top to add effects. I have seen one with ...
2
votes
5answers
99 views
collapsing groups and calculating n
I have a data frame that contains three variables: treatment, dose, and outcome (plus or minus). I have multiple observations for each treatment and dose. I'm trying to output a contingency table ...
0
votes
2answers
63 views
Calculating displacement many times with respect to different elements
I have the following data (or similar):
154240 1 7
154240 2 2
154240 5 6
154240 2 5
154240 6 ...
0
votes
0answers
29 views
Recover default touch behaviour for child elements
I have set IsManipulationEnabled true for a grid control for some basic flick style touch control.
Now all the child Combobox controls contained in the grid no longer respond to touch.
I can see ...
0
votes
1answer
37 views
How do I assign each value between a colon into a new variable? So 08:10:20 Would be hours,minutes and Seconds
How do I assign each value between a colon into a new variable? So 08:10:20 Would be hours,minutes and Seconds In VB.NET?
So
Hours would be equal to 8
Minutes would be equal to 10
Seconds would be ...
