The interaction tag has no wiki summary.
0
votes
2answers
96 views
Two Interacting C# Classes
This is a pretty beginner question but I'm stumped and I can't figure out how to get what I want from this. I have my first class that obtains information (database/textfile/whatever) but I want it to ...
0
votes
0answers
20 views
WordPress dictionary plugin interaction in android Applicaiton
i have a website that uses a wordpress dictionary plugin , Now i am developing a Android application that has to sync with the websites data base and display the same search results that gets ...
1
vote
1answer
25 views
How to create a pop-up (ease-in) fixed header
I am talking about the fixed header you get in your facebook profile page. Once you scroll to the end of the cover picture, you get a secondary header bar which then becomes fixed till you scroll ...
0
votes
1answer
31 views
Search for specific interactions of the levels of two factors in R
I am looking for a way to search for a specific form of interaction between the levels of the factors constituting the rows of a dataframe.
I have a dataframe, such as this one, in which each column ...
0
votes
1answer
56 views
R lm interaction terms with categorical and squared continuous variables
I am trying to get an lm fit for my data. The problem I am having is that I want to fit a linear model(1st order polynomial) when the factor is "true" and a second order polynomial when the factor is ...
1
vote
2answers
77 views
How to combine three separate interaction plots into a single figure?
Apologies for that. Here's my question with a reproducible data set:
library(effects)
data(Arrests)
Arrests$year <- as.factor(Arrests$year)
arrests.mod <- glm(released ~ employed + citizen + ...
0
votes
1answer
75 views
How to get and update Primefaces pickList bean source and target lists via javascript
Im developing a map application that has select interaction. Trying to update pickList bean when cities selected.
<script>
function onCitySelected(e) {
// get myPrimeFacesPickList
...
3
votes
0answers
49 views
How do I interact a tensor product with two different `by=var` variables?
An example:
library(mgcv)
N=1000
x1 = seq(1:N)
x2 = log(x1)
x3 = sqrt(x1)
fac1 = ceiling(rnorm(N)*3)
fac2 = ceiling(runif(N)*3)
y = fac1*x2 + x1*x2 + x2 + x3*x2 + x2*(x1/x3)^(.8+fac2/10) + ...
0
votes
3answers
51 views
How to let terminal refresh without printing new stuff in C
I want to make a more dynamic interface rather than print out a whole new page every time but do not know how to implement it. For example, if we have a download bar that goes from 0% to 100%, I want ...
3
votes
1answer
75 views
What does interaction of continuous and categorical variable represent (STATA)?
Here is the quote fom STATA online tutorial: If you want to interact a continuous variable with a factor variable, just prefix the continuous variable with .c ...
1
vote
1answer
80 views
Simulating an interaction effect in a lmer() model in R
Is there an R package with a function that can:
(1) simulate the different values of an interaction variable,
(2) plot a graph that demonstrates the effect of the interaction on Y for different ...
0
votes
1answer
37 views
How can I improve my animation's mobile performance?
So, I built this little interactive roulette:
http://techgoldmine.com/roulette/
I need it to work on mobile as well as desktop. Originally I handled interaction by having the user interact with an ...
0
votes
2answers
29 views
interaction, number of groups
From a vector a I'm looking for a function (quick to compute) that returns a vector with numbers ranging between 1 and the number of levels in vector a and indicating which values are equal.
I know ...
0
votes
0answers
43 views
Animating UIButton whilst not disabling interaction [duplicate]
Lots of posts have been written about UIView animation with code such as:
[UIView animateWithDuration:5.2
delay: 0
options: ...
-3
votes
1answer
118 views
PropertyChanged event on viewmodel property
i'm trying to Raise a PropertyChanged event on a Property in my ViewModel
using interaction triggers .
CS :
public string MyContentProperty
{
get { return "I Was Raised From an outside Source ...
2
votes
1answer
61 views
Performance interaction in SCORM
I understood almost all types of interactions specified by the scorm data model element cmi.interactions.n.type(true_false, multiple_choice, fill_in, long_fill_in, matching, performance, sequencing, ...
1
vote
1answer
52 views
Diagram to represent user interaction with different parts of the network
Can anyone recommend a suitable diagram to represent user interaction with different physical systems as different tasks are performed?
I think something along the lines of a UML sequence diagram ...
7
votes
2answers
268 views
Barplot with significant differences and interactions?
I would like to visualize my data and ANOVA statistics. It is common to do this using a barplot with added lines indicating significant differences and interactions. How do you make plot like this ...
0
votes
1answer
38 views
Does R's drop1 account for the non-interaction terms when there are both interaction terms and non-interaction terms in the model?
My question is in the title. I am unsure if the non-interaction terms are being accounted for as the output of drop1 does not include them, but only the interaction terms. The code and output is as ...
0
votes
3answers
90 views
is to possible to have two programs interact in different language? [closed]
I have a program written in C++ that gets a computers IP address (server).
I now to create another program (the client) that connects to the server and then the server sends back the clients ip ...
0
votes
1answer
71 views
How do I interpret non-significant interaction effect?
Here is the output for testing whether male earns less in a particular job market:
Income=b1*education+b2*male+b3*male*education
where b1=100 (significant), b2=-50 (insignificant), b3=10 ...
0
votes
5answers
84 views
Confused by jQuery 'parent' scope on event trigger
When a user clicks on a link, I'm trying to check if that link's container has a class of active assigned to it.
But I think I'm having a problem with scoping, as while the visual style is applied by ...
0
votes
1answer
49 views
Trouble getting se.fit and confidence intervals using clmm2 from ordinal package
I'm using clmm function from ordinal package in R in order to fit cumulative mixed models to my data. It worked fine until I tried to get predicted probabilities. I can't get either SE or confidence ...
0
votes
0answers
282 views
Android - Overlayed App (Always On Top) with tap recognition of app icons
The idea is simple to understand:
I want to "trick" the user to believe he is at one place (like the home screen) but still want to have full capability of interaction with apps, buttons, settings, ...
0
votes
1answer
187 views
How to plot a regression plane with an interaction in rgl
I want to plot the regression surface from a model with an interaction term using rgl's interactive plotting system. It is easy to plot a regression plane for a model without an interaction term ...
1
vote
1answer
48 views
What are some resources for interacting with C from C++ code? [duplicate]
I'm currently developing a SDK for our product in C++. However, some of our customers have a code base written in C that will need to interface with our SDK. I need to provide C Interfaces and am ...
1
vote
1answer
97 views
Designing a “busy” dialog using InteractionRequests
I'm currently using Prism's InteractionRequest to display new windows. I use them for simple confirmations as well as displaying a window window with a custom view/viewmodel, following the sample ...
0
votes
1answer
89 views
How do i limit the 'click' area?
I've got a structure like an accordion. I got 'work' divs, which i did hide some pictures inside, and i want them to work as a gallery.
So when i click on a 'work' div, the div animates and it ...
0
votes
1answer
99 views
Rails: DropDown Selection to Controller Action
Good Day, i have this form view/startseites/index.html.erb and i specified a methode in my people_controller, she doesnt go. I prepared some ghost code for understanding. I want to give the entries ...
0
votes
0answers
161 views
How can I visualize the data causing an interaction effect in a linear model?
I have a linear model that includes two continuous variables X and Y and their interaction X:Y. The main effect coefficient of X is effectively zero (and ns), but the interaction coefficient is ...
0
votes
1answer
289 views
What is the correct way to pass data between view models?
I've just started with MVVM and I have been reading up on it and doing some examples. I've managed to create an application that will read from the database and then populate into a listbox. I am ...
1
vote
3answers
254 views
Get common rows in two Data tables
I have a table PromotionRequest with 4 columns:
| PromoId | PromoType
----------------------
| 101 | 1 |
| 101 | 2 |
| 103 | 3 |
| 104 | 4 |
I have a table ...
1
vote
2answers
60 views
How to include JS in text from JS
I have a function, ajaxinclude() which includes the content of a page.
It works perfectly when written like:
<div>
<script type="text/javascript">
...
1
vote
0answers
53 views
Android widget interaction with service
Hello for all in 2013!
I have following android challenge:
Assume I have an app consisting of an activity and a widget. Both of these provide the same informations as actual as possible - so I have ...
-4
votes
1answer
71 views
Java code ineracting with a website [closed]
First of all I know there are a couple of good posts regarding the same question. But they are all a bit too different for me to get the kind of information I am in need of.
First of all I am a ...
1
vote
1answer
57 views
jquery change interact with click function
I've a problem: I made a function to make some calculations, based on change function; now I'ld like to be able to modify the content of one of the factors acting on the result of the (one row) ...
-1
votes
1answer
133 views
How to make a python web app interact with a python script [closed]
I have a smallish command-line python program that I wish to make into a web app. What I mean by this is that you could go to a web site, and it would allow you to input some parameters and then, on ...
-1
votes
1answer
49 views
Interaction of processes in Java [closed]
Suppose I have a Java application. I want to run another Java application from current (not a thread - a separate application) to calculate some function and them get the result to my first ...
1
vote
0answers
351 views
Windows Phone 8 - Make a call without user notification
Is there any way a Windows Phone 8 app can make phone calls, sending SMS, and perform other cellular network activities without user interaction?
According to this answer ...
0
votes
1answer
116 views
Exclude one factor level interaction calculation in R : lme4
I am making mixed models, using lme4, which included three factors (S,M,R) with 2,3 and 4 levels. But I am missing observations for S3:M2:R1, so I am not able to check for the 3-way interaction.
Is ...
2
votes
1answer
253 views
Interaction plot with confidence intervals
I want to draw an interaction plot with confidence intervals for an assignement that is due tomorrow. This is my dataset:
Snail0
water lightness total_migration
control dark 9.5
...
3
votes
2answers
419 views
Getting EventArgs when using interaction triggers
I'm using this way to catch events from XAML:
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseWheel">
<ei:CallMethodAction MethodName="ChangeValue" ...
7
votes
2answers
277 views
haskell and Unix shell scripting
is there any possibility to use haskell functions in unix shell scripts?
for instance:
#!/bin/bash
...
var1=value
...
# use haskell function with input from shell variable var1
# and store the ...
6
votes
1answer
305 views
Probable bug on iPad for UIDocumentInteractionController: presentPreviewAnimated is not pushed into the navigation stack
iPad only: UIDocumentInteractionController presentPreviewAnimated is not pushed into the navigation stack and only shown modally even when a navigation controller is returned from ...
1
vote
2answers
117 views
How do I know when the task from command line is finished?
This is really important as I could not find anything I am looking for in Google.
How do I know when the application (or is it more appropriate to call it a task?) executed by a command line is ...
0
votes
0answers
195 views
plotting 3-way interaction with continuous and categorical variables in linear mixed model
I know how to plot a 3-way interaction in SPSS generalized mixed model. I am looking for similar code to use with linear mixed models.
this is the code I used for generalized:
/EMMEANS_OPTIONS ...
0
votes
0answers
266 views
Post hoc test for interaction with covariate in R
Apologies if this is a daft question... but I'm struggling.
I am using lme4 to test whether manipulating a colour ornament (two levels: manipulated vs control) affects whether a fight is won or lost ...
0
votes
1answer
161 views
Python QT create app. that can interactively receive from and send to a CLI script
I have a text CLI based script written to test some equipment. Some of the test requires entering back yes/no answers as well as reading the script's output. I want to see if it's feasible to create ...
2
votes
0answers
117 views
Forcing a reference category in logistic model in R
Using R, I am running a logistic model and need to include an interaction term in the following fashion, where A is categorical, and B, continuous.
Y ~ A + B + normalized(B):A
My problem is that ...
0
votes
2answers
155 views
Scripting language to interact with websites
I am trying to write a script to be able to automatically go to a website, fill in a form's fields, submit the form, login to my email and send and email. Basic web interactivity. What language would ...