Actions

Panel integration/ja: Difference between revisions

From LimeSurvey Manual

(Created page with "==パネル統合機能の使い方==")
(Created page with "[https://www.limesurvey.org/forum/design-issues/95878-how-to-use-the-panel-integration-fuction 簡単な例]を以下に示します。ここでは、パネル統合機能の...")
Line 42: Line 42:
==パネル統合機能の使い方==
==パネル統合機能の使い方==


A [https://www.limesurvey.org/forum/design-issues/95878-how-to-use-the-panel-integration-fuction simple example] is presented below in which we try to explain how to use the panel integration function
[https://www.limesurvey.org/forum/design-issues/95878-how-to-use-the-panel-integration-fuction 簡単な例]を以下に示します。ここでは、パネル統合機能の使用方法を説明します。





Revision as of 06:48, 8 July 2018


以下の例と説明は、完全にユーザーの協力に基づいています。 パネル統合についてのオープンな知識を広げたい場合は、気軽に参加してください。


はじめに

このタブから、アンケートで受け入れられるURLパラメータを設定できます(これらのパラメータは、一般的なアンケートの開始URLに添付されます)。このオプションは、参加者を提供する商用のアンケートパネル事業者とアンケートを統合する場合に重要です。事業者は通常、すべてのアンケート参加者のユニークなIDを提供します。これらユニークなIDを保存/処理してさらに参照することになります。


  注意 : 一部のパネル事業者は、クォータの制限でドロップアウトした参加者、アンケートを終了した参加者のIDを、アンケート終了URLやクォータURLを通じてパネル事業者に返信する必要があります。



アンケートのパネル統合にアクセスするには、 アンケートメニューにアクセスし、 パネル統合タブをクリックします。


アンケートパネル統合

アクセスすると、空のテーブルが表示され、URLパラメータを追加するオプションが表示されます 。



2つのフィールドを入力する必要があります。

  • パラメーター: このフィールドに新しいパラメータの名前を入力します。これはURLに含められます。
  • 対象となる質問: 一般的に、URLパラメータは質問として保存されます。アンケート回答者が上前項で定義したパラメーターを含むURLリンクをクリックしてたどり着く場所となります。
また、URLパラメーターを短いテキスト質問または複数の短いテキスト質問タイプへの回答として保存することもできます(任意の短いテキスト質問を選択して保存することができます)。ただし、URLパラメータの値を保存しなくても、このパラメータを終了URLで使用することはできます。詳細は、終了URL のウィキセクションを確認してください。


パネル統合機能の使い方

簡単な例を以下に示します。ここでは、パネル統合機能の使用方法を説明します。


1) First, create a short/long text question and name it what ever you want (we will use "LS" for the Question code field). Then, enable the always hide this question option, located under the Display tab within the menu of the question.

  Attention : Make sure you disable the welcome page! Let them land on the page with the short/long free text question. The parameter cannot work in the welcome screen because the parameter has to be loaded into the question first!



2) Go to the panel integration tab, and click on the "Add URL parameter".

Select the short/long text question you created in the first step. The respondents that come from the respective professional panel provider will land on the target question. It can be hidden so that the respondents can directly start completing the survey.



The name you pick for the parameter will have to be included in the entry link that you will later supply to your panel provider. It will be named "LSid" in our example. Don't forget to click on the Save button located in the upper right part of the table!


3) Now, you have to set up the entry link that you will send to the your panel provider. To get your survey URL link, click on the Preview survey buttons.



Copy the URL you accessed from the address bar:



Add at the end the newly added parameter: &LSid="xxxxxx". The link should look like this:

http://localhost/index.php/369498?newtest=Y&lang=en&LSid="xxxxxx"

Hint: The GET parameters use "?" for the first parameter and "&" for the rest of them. If you already have "?" in your URL, you must use "&" to add other GET parameters. Read about the GET parameters and their usage here.


What ever you replace the "xxxxxx" with will be grabbed and stored in the short/long free text question when your respondent lands on that page. For example, I sent to a user the following link:

http://localhost/index.php/369498?newtest=Y&lang=en&LSid=ABCD5

The string after LSid was stored as an answer to the short/long text question.



Read the URL fields wiki section for more information on URL customization.

Examples

The following examples were created in order to help you easily add:

Note: parametername={PASSTHRU:parametername}" provides the panel provider the id of the respondent.


  Attention : The solutions provided below make use of the passthrough fields. Please note that aside "parametername={PASSTHRU:parametername}", everything else has to be provided by your panel provider!



The complete link

The complete link has to be inserted into the end URL field that also has to be loaded automatically for everyone who successfully completes the whole survey.

The URL you have to send back to the panel provider should look like this:

https://panelproviderwebsite.com/?return=complete&parametername={PASSTHRU:parametername}

The screenout link

A screenout excludes the participants from continuing the survey because he or she is not a member of your survey target group. For screenouts, you have to set the quota limit field to "0" (zero) and allow the quota URL to be automatically loaded once it was triggered.

Then, add the following link into the quota URL field:

https://panelproviderwebsite.com/?return=screenout&parametername={PASSTHRU:parametername}

Note: Read the following wiki section to find out more about the LimeSurvey quota system and its usage.


The quotafull link

A quotafull excludes participants from continuing the survey, because a certain quota has been exceeded. https://panelproviderwebsite.com/?return=quotafull&parametername={PASSTHRU:parametername}

Note: Read the following wiki section to find out more about the LimeSurvey quota system and its usage.


This is not the only solution you can use to implement quotafull, complete, screenout redirects to your panel provider! For example, the Expression Manager, the SQGA indentifiers, and the URL fields offer you different workarounds to complete the same tasks (and even the more complex ones). For additional help, check also the LimeSurvey forum.