Difference between revisions of "Great game of Turkey"

From Testiwiki
Jump to: navigation, search
(Structure and functionalities: all existing comments developed into a plan)
(some new code)
Line 8: Line 8:
 
library(OpasnetUtils)
 
library(OpasnetUtils)
  
objects.latest("Op_en7421", code_name = "initiate")
+
#objects.latest("Op_en7421", code_name = "initiate")
 +
happiness <- 0
 +
 
 +
question <- function() {
 +
  if(!exists("today")) today <- as.character(Sys.Date())
 +
  ques <- opbase.data("Op_en7421.questions")
 +
 
 +
  qvote <- opbase.data("Op_en7421.question_vote")
 +
  colnames(qvote)[colnames(qvote) == "Result"] <- "Question"
 +
  qvote <- unique(qvote[qvote$Date == today , ]) # Remove double votes
 +
  qvote <- aggregate(qvote["User"], by = qvote["Question"], FUN = length)
 +
  qvote <- qvote[order(qvote$User, decreasing = TRUE) , ][1,] # Choose the row with most votes
 +
 
 +
  temp <- merge(ques, qvote)[1 , c("Question", "Description")]
 +
 
 +
  # Find the most popular options
 +
 
 +
  ovote <- opbase.data("Op_en7421.option_vote")
 +
  colnames(ovote)[colnames(ovote) == "Result"] <- "Option"
 +
  ovote <- ovote[nrow(ovote):1 , ] #Turn newest first
 +
  #ovote <- ovote[!duplicated(ovote[c("Date", "User") , ]) , ] # Only keep the last vote
 +
  out <- merge(temp, ovote)
 +
  out <- aggregate(out["User"], by = out[c("Question", "Description", "Option")], FUN = length)
 +
  out <- out[order(out$User, decreasing = TRUE) , ][1:4,] # Choose the 4 rows with most votes
 +
  out <- out[!is.na(out$User) , ]
 +
  out$User <- NULL
 +
 
 +
  return(out)
 +
}
 +
 
 +
 
 +
issues <- Ovariable("issues",
 +
dependencies = data.frame(Name = "happiness"),
 +
formula = function(...) {
 +
  dat <- opbase.data("Op_en7421.issues")
 +
#  colnames(dat)[colnames(dat) == "Result"] <- "Option"
 +
#  dat$Obs <- NULL
 +
#  dat$Result <- 1
 +
  return(dat)
 +
}
 +
)
  
ques <- question()
+
#ques <- question()
 +
ques <- EvalOutput(issues)
 +
oprint(ques)
  
cat(as.character(ques$Description[1]), "\n")
+
#cat(as.character(ques$Description[1]), "\n")
cat(as.character(ques$Question[1]), "\n")
+
#cat(as.character(ques$Question[1]), "\n")
  
oprint(ques["Option"])
+
#oprint(ques["Option"])
  
 
</rcode>
 
</rcode>
Line 54: Line 96:
 
</rcode>
 
</rcode>
  
'''Setup your profile
+
'''Setup your profile. Do this before you start.
 +
You may change your preferences later.
  
 
<rcode label="Choose group" embed=1 variables="
 
<rcode label="Choose group" embed=1 variables="
Line 70: Line 113:
 
dat <- data.frame(
 
dat <- data.frame(
 
User = wiki_username,  
 
User = wiki_username,  
Date = as.character(Sys.Date()),
+
Group = group,
Result = group # Group
+
Result = as.numeric(Sys.time())
 
)
 
)
  
Line 85: Line 128:
  
 
oprint(dat)
 
oprint(dat)
 +
 
cat("Your group was successfully saved.\n")
 
cat("Your group was successfully saved.\n")
 +
 +
test <- opbase.data("Op_en7421", subset = "Bonuses")$User
 +
if(!wiki_username %in% test) {
 +
dat <- data.frame(
 +
User = wiki_username,
 +
Reason = "Seed",
 +
Bonus = 1,
 +
Result = as.numeric(Sys.time())
 +
)
 +
 +
opbase.upload(
 +
dat,
 +
ident = "Op_en7421",
 +
name = "Great game of Turkey",
 +
subset = "Bonuses",
 +
act_type = "append",
 +
language = "eng",
 +
who = wiki_username
 +
)
 +
 +
oprint(dat)
 +
 +
cat("Your seed bonus was successfully saved.\n")
 +
}
 +
</rcode>
 +
 +
Issues: Date, Issue, Description, User, ts
 +
<rcode label="Suggest issue" embed=1 variables="
 +
name:date|description:When should this issue be played?|type:date|
 +
name:issue|description:What is the issue (decision) that should be played? (briefly)|type:textbox|
 +
name:description|description:Give a more detailed description.|type:textbox
 +
">
 +
# This is code Op_en7421/ on page [[Great game of Turkey]]
 +
 +
library(OpasnetUtils)
 +
 +
dat <- data.frame(
 +
Date = as.character(date),
 +
Issue = issue,
 +
Description = description,
 +
User = wiki_username,
 +
Result = as.numeric(Sys.time())
 +
)
 +
 +
opbase.upload(
 +
dat,
 +
ident = "Op_en7421",
 +
name = "Great game of Turkey",
 +
subset = "Issues",
 +
act_type = "append",
 +
language = "eng",
 +
who = wiki_username
 +
)
 +
 +
oprint(dat)
 +
 +
cat("Your issue was successfully saved.\n")
 
</rcode>
 
</rcode>
  
Line 350: Line 451:
  
 
library(OpasnetUtils)
 
library(OpasnetUtils)
 
question <- function() {
 
  if(!exists("today")) today <- as.character(Sys.Date())
 
  ques <- opbase.data("Op_en7421.questions")
 
 
 
  qvote <- opbase.data("Op_en7421.question_vote")
 
  colnames(qvote)[colnames(qvote) == "Result"] <- "Question"
 
  qvote <- unique(qvote[qvote$Date == today , ]) # Remove double votes
 
  qvote <- aggregate(qvote["User"], by = qvote["Question"], FUN = length)
 
  qvote <- qvote[order(qvote$User, decreasing = TRUE) , ][1,] # Choose the row with most votes
 
 
 
  temp <- merge(ques, qvote)[1 , c("Question", "Description")]
 
 
  # Find the most popular options
 
 
 
  ovote <- opbase.data("Op_en7421.option_vote")
 
  colnames(ovote)[colnames(ovote) == "Result"] <- "Option"
 
  ovote <- ovote[nrow(ovote):1 , ] #Turn newest first
 
  #ovote <- ovote[!duplicated(ovote[c("Date", "User") , ]) , ] # Only keep the last vote
 
  out <- merge(temp, ovote)
 
  out <- aggregate(out["User"], by = out[c("Question", "Description", "Option")], FUN = length)
 
  out <- out[order(out$User, decreasing = TRUE) , ][1:4,] # Choose the 4 rows with most votes
 
  out <- out[!is.na(out$User) , ]
 
  out$User <- NULL
 
 
 
  return(out)
 
}
 
  
 
mergeusers <- function(happ) {
 
mergeusers <- function(happ) {
Line 403: Line 477:
 
)
 
)
  
questions <- Ovariable("questions",
 
dependencies = data.frame(Name = "happiness"),
 
formula = function(...) {
 
  dat <- opbase.data("Op_en7421.questions")
 
  colnames(dat)[colnames(dat) == "Result"] <- "Option"
 
  dat$Obs <- NULL
 
  dat$Result <- 1
 
  return(dat)
 
}
 
)
 
  
 
happindex <- Ovariable("happindex",  
 
happindex <- Ovariable("happindex",  

Revision as of 17:13, 9 February 2016


Make today's decision

+ Show code

Check above the question of the day and decide which option you would choose.:

+ Show code

Setup your profile. Do this before you start. You may change your preferences later.

Into which group do you identify most? (You only need to choose once):

+ Show code

Issues: Date, Issue, Description, User, ts

When should this issue be played?:
..

What is the issue (decision) that should be played? (briefly):

Give a more detailed description.:

+ Show code

Question

What is a good game to crowdsource citizen priorities about daily political decisions in such a way that

  • it can be done using a mobile app,
  • it characterises happiness of citizen groups of the decisions,
  • it characterises progress of important societal values,
  • it enables crowdsourcing the actual questions and options asked?

Answer

See the top of the page for the main questionnaire of the game. Here we present results from the game.

+ Show code

Rationale

Questions(-)
ObsDateQuestionDescriptionOption
12016-01-16Should the scarf ban in the universities be abandoned?Since Kemal Atatürk, scarfs have been banned in universities. Now this policy is being re-evaluated.Yes
22016-01-16Should the scarf ban in the universities be abandoned?Partly
32016-01-16Should the scarf ban in the universities be abandoned?No
42016-01-17Should the military budget be increased?The political and military situation in Syria and areas nearby have become more difficult during the last 12 months.Yes
52016-01-17Should the military budget be increased?No, keep the same
62016-01-17Should the military budget be increased?No, reduce
72016-01-17Should the education budget be increased?Yes
82016-01-17Should the education budget be increased?X % of the young people in Turkey do not receive any education except the primary school. Education is a known determinant of social improvement, but it is also expensive.No, keep the same
92016-01-17Should the education budget be increased?No, reduce
102016-01-18Should the presidential palace be made to a public place?President Erdogan built a presidential palace with more than a thousand rooms. Should it be opened up to the public instead of being in president's private use?Yes
112016-01-18Should the presidential palace be made to a public place?No
122016-01-18What should be done to the immigration situation near the Syrian border?The was in Syria has made millions of people to flee from the area.Increase refugee camps and ask for money from the EU.
132016-01-18What should be done to the immigration situation near the Syrian border?Force people from Syria to go back.
142016-01-18What should be done to the immigration situation near the Syrian border?Ask military help from the US and Nato.
152016-01-18What should be done to the immigration situation near the Syrian border?Fight the illegal refugee transport from Turkey across the Mediterranean.
162016-01-18What should be done to the immigration situation near the Syrian border?Attack Russia verbally because it helps the Syrian government and prolongs the war.
172016-01-18What should be done to the immigration situation near the Syrian border?Fight the Kurds in Syria but silently so that western allies do not get mad.
182016-01-19How should terrorist attack be prevented?Homeland security may be compromised in touristic areas because of terrorist attacks.Increase guards in tourist areas.
192016-01-19How should terrorist attack be prevented?Increase guards on the streets.
202016-01-19How should terrorist attack be prevented?Increase international collaboration.
212016-01-19How should terrorist attack be prevented?Do as before.

Calculations

Select an option:

Select a group:

How much happiness would this option bring to this group?:

+ Show code

Select an option:

Select an issue:

How much progress would this option bring to this issue?:

+ Show code

+ Show code

Give the number of the question you want for today.:

+ Show code

Give the number of the option you want for today (up to 4 options used).:

+ Show code


+ Show code

Structure and functionalities

Error creating thumbnail: Unable to save thumbnail to destination
Data structure of the great game. Each blue box is a data table. Arrows show the information flows. Happiness and value performances are calculated based on decisions and scores estimated by the players (or researchers?). Upload data and select newest are generic functions needed to operate with the data.

The content of and use of the data tables is the following:

  • Issues: List of decisions to be made. A user can suggest only one issue per day. For each day, the most popular issue is taken to the game.
  • Actions: List of decision options to be made. A user can suggest only one action per issue. For each time point, two most popular actions are taken to the game. However, the actions in the game may change during the day, if the rank of the issues changes.
  • Issue vote: List of votes for each issue. Each user can cast a single vote either for or against an issue. The number of votes a user has equals their bonuses.
  • Action vote: List of votes for each action under issues. The voting system is the same as for issues.
  • Decisions: List of decisions each user makes from the actions and issues on the game.
  • Bonuses: List of bonuses the users have earned during the game. In the beginning, each user has 1 bonus. You can earn bonuses if your actions suggestions gets to be played (+1) or if your issues gets to be played (+5). Every time a user makes a decision, they get +0.1 bonus.
  • Happiness: Users' opinions about how much happiness an action brings to their own group.
  • Values: Users' opinions about how much value an action brings to a selected group.
  • Users: List of users' groups (i.e. to which group each user identifies themselves).

The functions needed are the following.

  • Upload data: Take the data provided by the user or calculated. Add automatic fields, e.g. ts, user and date. Upload data to the respective table.
  • Create ovariable: Download data from a table. From the data, find the unique rows with a given condition (e.g. discard previous decisions made by a user previously on the same day). Then create an ovariable with the structure needed.
  • Firstuser: Check's whether user's wiki_username is found from Bonuses. If not, it is added there and 1 bonus given.

The interface codes used are the following:

  • Suggest issues: Ask date, issue and description from user. Date means the date when this issue will be played. Default is today, but user can change that and suggest future issues. Timestamp (ts) come automatically. User is the wiki_username. Upload data to Issues table. No need to check previous entries. Upload user's bonus to Issue vote as number of votes.
  • Show issues: Ask date (today by default) and show all issues and each one's actions listed from the most to least popular. This is necessary for suggesting actions.
  • Show today's issue: Ask nothing. Show today's top-ranked issue and its two top-ranked actions. [Calculate the sum of results over all users. Show these popularity sums as the result of object popularity? Select the most popular row among a group defined by an index; use oapply to integrate over the index using which.max and pick that row only. Should this be a function or ovariable?]
  • Suggest actions: Ask date, issue, action and description from user. Date is today by default. Ts and user come as previously. If the date-issue pair does not exist in Issues table, give error message. Upload data to Actions and user's bonus to Action vote.
  • Vote for issue: Ask the rank number of the issue as a number. The user can check the numbers with Show issues. Date, user, and ts come automatically. Do firstuser. Votes is the number of user's bonuses and comes from Bonuses. Upload data to Issue vote. Store information about the rank before voting somewhere (as an ovariable or a technical data table?). If the information has changed from the last time, give bonus to the user whose information is now on the top.
  • Vote for action: Similar to vote for issue, except that the action number is asked and data is uploaded to Action vote.
  • Make decision: Ask the action from the two top choices of the most popular issue using a drop-down list. The options can be seen with show today's issue. Upload data to Decisions. However, if an issue was the most popular at some point during the day, it is still kept in the issue list. --# : Is it? How? --Jouni (talk) 17:21, 7 February 2016 (UTC)
  • Evaluate happiness: Ask date (today is the default), action number from show issues for that date, and hscore for happiness score in the user's own group. Ts, user as previously. Check if user has a group in Users and if not, give an error message to sign up to a group first. Upload data to Happiness.
  • Evaluate values: As evaluate happiness, except that unlike group, the value is asked from the user and nothing is checked. Upload data to Values.
  • Manage profile: Ask the group to which user identifies themselves. Take user and ts as previously. Add data to Users.
  • Show results: This code is divided into several parts:
    • Show happiness performance: Ask nothing. From Decisions, take the action of each day; do this separately for You, the user's own decisions, and Crowd, i.e. the most popular action of each day. Combine that with the happiness scores from Happiness. Show cumulative happiness across time for both decision makers.
    • Show value performance: Similar to show happiness performance, but for values from Values. It is imprtant to notice that value scores for each action are only partly a matter of opinion and partly a matter of research. Therefore, ideas should be developed how this research is gathered and used.
    • Show situation': Show the situation of the current issue: the issue and description, and the two actions and their votes.
    • Show all issues: Show all issues and actions and their votes for today.

How to make ovariables from the data tables? Dependencies: user, todate. In the ovariable formula, do the following.

issues <- Ovariable("issues", 
	dependencies = data.frame(Name = c("user", "todate")),
	formula = function(...) {
		out <- createova(dat = "Op_en7421.issues", addindex = "Issues")
		return(out)
	}
)

The function createova does something like this:

Create a temporary ovariable temp and fetch the respective table with ddata.
indices that are used to find unique rows: uncolumns <- c("Date", "Issue", "Action", "User", "Value", "Group", "Reason")
However, take away the index that is being added: Issue (for Issue vote and Issues); Action (for Action vote and Actions). None for other tables.
uncolumns <- uncolumns[!uncolumns %in% addindex]
indices that are transformed to Result: rescolumns <- c("Ivotes", "Avotes", "Bonus", "Vscore", "Hscore")
Do oapply(temp, INDEX = uncolumns, FUN = which.max) to find unique rows. Bring Description and other columns back.
Do colnames(temp@output)[colnames(temp@output) %in% rescolumns] <- "Result" to make the right result column.
if(!"Result" %in% colnames(temp@output)) temp$Result <- 1
return(temp) 


Important categories
Groups for Turkey Value categories
  • Nationalists
  • Conservatives
  • Minorities
  • Liberals
  • Kemalists
  • Civil Rights
  • Women's Rights
  • Religion
  • National Values
  • Democracy

See also


Keywords

References


Related files