Questions tagged [two-way]

Refers to a procedure, a function, or a case where the data has two sides.

Refers to a procedure, a function, or a case where the data has two sides. Often these are referred to as input and output, and sometimes they are referred to as beginning and end. In some contexts, two-way might mean information that flows into two separate directions, or a simultaneous execution of two processes.

165 questions
4
votes
1 answer

Android two-way databinding with radio button

I am trying to bind in two ways boolean value of my model to RadioButton. However, the code doesn't compile. I have following error messages: Error:(41, 21) error: variable receiveDataContainer is already defined in method onChange() Error:(45,…
4
votes
2 answers

SQL for two-way frequency table using a string valued variable

Consider the following event data in PostgreSQL 9.4: eventTime | eventName 2015-09-25 18:00:00 | 'AAA' 2015-09-25 17:00:00 | 'BBB' 2015-09-25 16:00:00 | 'BBB' 2015-09-25 15:00:00 | 'BBB' 2015-09-25 14:00:00 | 'AAA' 2015-09-26 13:00:00 |…
JohnH
  • 51
  • 4
4
votes
2 answers

Need example of Java Client Destop App consuming Two-way SSL Secured webservice

I'm looking for an example of a java desktop application that consumes a Two-way SSL secured web service. Any tutorials or examples would be great, especially if they are based on the Eclipse IDE. Thanks.
Rick
  • 648
  • 1
  • 11
  • 25
4
votes
2 answers

Understanding Two-Way Data-Binding in AngularJS

I'm new to AngularJS. A long time I tried to abuse it the way I've always used Javascript-Frameworks like JQuery or Mootools. Now I understood that it's not gonna work like that anymore... But I've come across some big problems since I always…
Preexo
  • 2,102
  • 5
  • 29
  • 37
3
votes
2 answers

selected output for Tukey's HSD in two-way ANOVA in R

I have a large data set with multiple variable. I need to do two-way-ANOVA and then post-hoc pair-wised multiple comparison using Tukey HSD. the head of my data for first 25 entry is like this: > head(my_data2, 25 ) CellType variable value 1…
Lionette
  • 83
  • 1
  • 8
3
votes
1 answer

Planned contrasts using Wilcox robust ANOVA in R (WRS2 package)

I run a two-way ANOVA and a posthoc tests on my dataset using WRS2. Yet within the contrasts I do not find the comparisons I need. Is it possible to plan my own contrasts?
3
votes
2 answers

Polymer communication between elements

I want to achieve communication between child parent with Polymer element. Here my index.html Both element have their respective "data"…
aiqency
  • 1,015
  • 1
  • 8
  • 22
3
votes
4 answers

what is two way data binding in angular

I am a newbie trying to understand angular two way data binding. In the docs https://docs.angularjs.org/guide/databinding, it mentions "Any changes to the view are immediately reflected in the model, and any changes in the model are propagated to…
user2243301
  • 87
  • 2
  • 5
3
votes
4 answers

How to Get Dictionary TValue from TKey in C#?

I declared the dictionary obj. Dictionary aDict = new Dictionary(); aDict .Add("IP", "Host"); As I remembered, The expression of aDict[IP] can return the value (Host). Now if I go in the opposite…
Nano HE
  • 9,109
  • 31
  • 97
  • 137
2
votes
1 answer

In R studio I receive an error for a post hoc test TukeyHSD for a two-way ANOVA with an interaction

This is everything I entered and the output. two.way <- aov(Facefactor ~ Teamsport + College + College:Teamsport, data = Male_Data_R_Face_Factor) summary(two.way) Df Sum Sq Mean Sq F value Pr(>F) Teamsport 1 0.29 …
Ryan Kron
  • 23
  • 3
2
votes
1 answer

Two-way Socket I/O with asyncore or alternative in Python

Am working on the back-end of Django web app that also has to do socket I/O with sensor devices in the field via GPRS using TCP communication. I'd managed to succeed in obtaining data from the devices using the python module asyncore. What I've been…
JWL
  • 13,591
  • 7
  • 57
  • 63
2
votes
1 answer

How to change the colour of bars in a twoway graph with rcap?

I am trying to change the color of the bars in a twoway bar graph with an overlayed rcap. Stata will not allow me to use the color(), bcolor(), or bar(1, color()) options. This is my code: twoway (bar meanVAR1 Treatment) (rcap loVAR1 hiVAR1…
anna123
  • 21
  • 1
  • 2
2
votes
2 answers

jQuery templates plugin: how to create two-way binding?

I started using jQuery templates plugin (the one Microsoft created), but now I face this problem: the template is for a bunch of forms bound to an array of objects; when I change something on one of the forms, I want the bound object to update and I…
Andrey
  • 20,487
  • 26
  • 108
  • 176
2
votes
1 answer

Centralizing outgoing two-way SSL connections

We are currently using Apache to handle incoming SSL requests. These are two-way SSL connections. Apache accepts the https connection and pass the request on as http connection to the application server. This works well for us. We would like to use…
nidkil
  • 21
  • 2
2
votes
1 answer

Mvvmcross Two-way binding between custom properties

I can't understand, how can I bind two custom property between View and ViewMode with Two-Way mode. First I have a same ViewModel like: //ViewModel public class MyViewModel : MvxViewModel { .... private MyMode _testA public…
user8470673
1
2
3
10 11