{"id":2346,"date":"2024-08-05T18:42:38","date_gmt":"2024-08-05T17:42:38","guid":{"rendered":"https:\/\/beams-experiments.com\/?page_id=2346"},"modified":"2024-09-11T16:32:15","modified_gmt":"2024-09-11T15:32:15","slug":"evaluation-scoring-task-co-efficacy-human","status":"publish","type":"page","link":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/","title":{"rendered":"Task-EI-H"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <title>Evaluate Ideas<\/title>\n    <style>\n        body, html { height: 100%; margin: 0; }\n        .idea { display: none; }\n        .active { display: block; }\n        .buttonContainer { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }\n        button { padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; }\n        #prevButton, #nextButton { background-color: #007bff; color: white; }\n        #submitButton { background-color: #28a745; color: white; opacity: 0.5; cursor: not-allowed; }\n        #progressBarContainer, #pageProgressBarContainer { width: 90%; background-color: #e0e0e0; border-radius: 5px; margin: 20px auto; }\n        #progressBar, #pageProgressBar { height: 10px; background-color: #007bff; border-radius: 5px; width: 0%; }\n        #progressText, #pageProgressText { text-align: center; margin-top: 5px; }\n        #nextButton, #prevButton {\n            display: block;\n            background-color: #007bff;\n            color: white;\n            padding: 10px 20px;\n            margin: 20px auto;\n            font-size: 16px;\n            border: none;\n            border-radius: 5px;\n            cursor: pointer;\n            opacity: 1;\n        }\n        #submitButton {\n    display: block;\n    background-color: #28a745; \/* Green background *\/\n    color: white;\n    padding: 10px 20px; \/* Maintain padding *\/\n    margin: 20px auto;  \/* Maintain margins *\/\n    font-size: 16px;  \/* Font size *\/\n    border: none;\n    border-radius: 5px;\n    cursor: not-allowed; \/* Disabled cursor *\/\n    opacity: 0.5; \/* Make it visually clear that it's disabled *\/\n}\n\n#submitButton:enabled {\n    opacity: 1;  \/* Make fully visible when enabled *\/\n    cursor: pointer; \/* Change cursor when enabled *\/\n}\n\n        #nextButton:disabled, #prevButton:disabled {\n            opacity: 0.5;\n            cursor: default;\n        }\n#loadingSpinnerPage {\n    border: 5px solid #f3f3f3; \/* Light grey border *\/\n    border-top: 5px solid #3498db; \/* Blue border for the top *\/\n    border-radius: 50%;\n    width: 60px;\n    height: 60px;\n    animation: spin 2s linear infinite;\n     position: fixed; \/* Position it relative to the viewport *\/\n    top: 50%; \/* Move it down 50% of the viewport height *\/\n    left: 50%; \/* Move it right 50% of the viewport width *\/\n    transform: translate(-50%, -50%); \/* Offset the spinner by half its width\/height to center it *\/\n    z-index: 9999; \/* Ensure it is above other content *\/\n}\n@keyframes spin {\n    0% { transform: rotate(0deg); }\n    100% { transform: rotate(360deg); }\n}\n\n    <\/style>\n    <script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.5.1\/jquery.min.js\"><\/script>\n<\/head>\n<body>\n    <script>\n        \/\/ Show an initial alert immediately\n        alert(\"This is an idea evaluation task. Please wait for the full page to load before interacting with it. This may depend on your internet speed. Make sure to rank all ideas in order to  move on.\");\n$('#loadingSpinnerPage').show();\n        let currentIdeaIndex = 0;\n        let totalIdeas = 0;\n        let ideas = [];\n        let currentBatchID = null;\n        let totalTimeNotVisible = 0; \/\/ initialize totalTimeNotVisible\n        \/\/ Retrieve task sequence and group ID from local storage\n        const taskSequence = JSON.parse(localStorage.getItem('taskSequence')) || [];\n        const groupID = localStorage.getItem('groupID') || null;\n\n        \/\/ Get the current task index from the URL or set to 0 if not present\n        const urlParams = new URLSearchParams(window.location.search);\n        let taskIndex = parseInt(urlParams.get('taskIndex')) || 0;\n\n        \/\/ Ensure taskIndex is within the valid range\n        if (taskIndex < 0 || taskIndex >= taskSequence.length) {\n            console.error('Task index is out of range.');\n        }\n\n        \/\/ Function to go to the next task or the post-task questionnaire\n        function goToNextTask() {\n          \n               window.location.href = 'https:\/\/beams-experiments.com\/index.php\/interim-task-questionnaire-h\/?taskIndex=' + taskIndex;\n        }\n\n        document.addEventListener('DOMContentLoaded', () => {\n            $('#loadingSpinnerPage').hide();\n\/\/check if user already did this section\nif (localStorage.getItem('noveltyScore')) {\n    \/\/ If 'noveltyScore' already exists, make alert\n     alert ('You already did this section. Moving you back!');\n \/\/ Get the current task index from the URL or set to 0 if not present\n    const urlParams = new URLSearchParams(window.location.search);\n    let taskIndex = parseInt(urlParams.get('taskIndex')) || 0;\n    window.location.href = 'https:\/\/beams-experiments.com\/index.php\/interim-task-questionnaire-h\/?taskIndex=' + taskIndex;\n  }\n\/\/tracking time screen not attended\nlet timePageNotVisibleStart = 0;\nlet totalTimeNotVisible = 0; \/\/ initialize totalTimeNotVisible\n\nfunction updateTotalTimeNotVisible() {\n    if (document.visibilityState === 'hidden' && timePageNotVisibleStart !== 0) {\n        \/\/ Calculate time page was not visible and reset start time\n        const notVisibleDuration = Date.now() - timePageNotVisibleStart;\n        totalTimeNotVisible += Math.round(notVisibleDuration \/ 1000);\n        timePageNotVisibleStart = 0;\n    }\n    \/\/ Optionally log the updated total time here for debugging\n}\n\ndocument.addEventListener('visibilitychange', () => {\n    \/\/console.log('Visibility changed to:', document.visibilityState);\n    if (document.visibilityState === 'visible') {\n        if (timePageNotVisibleStart !== 0) {\n            const notVisibleDuration = Date.now() - timePageNotVisibleStart;\n           \/\/ console.log('Not visible duration (ms):', notVisibleDuration);\n            totalTimeNotVisible += Math.round(notVisibleDuration \/ 1000); \/\/ Convert ms to seconds and accumulate\n            \/\/console.log('Total time not visible (s):', totalTimeNotVisible);\n            timePageNotVisibleStart = 0; \/\/ Reset the start time\n        }\n    } else {\n        timePageNotVisibleStart = Date.now();\n    }\n});\n            var startTime = Date.now();\n            localStorage.setItem('startTime', startTime);\n            updateButtonsState();\n            allocateAndFetchBatch();\n            updatePageProgressBar(taskIndex);\n        });\n\n        function allocateAndFetchBatch() {\n            fetch('https:\/\/beams-experiments.com\/coEfficacy\/fetchBatchIDCoEfficacy.php')\n                .then(response => response.json())\n                .then(data => {\n                    if (data.ideas && data.batchID) {\n                        console.log('Allocated batch ID:', data.batchID);\n                        localStorage.setItem('batchID', data.batchID);\n                        currentBatchID = data.batchID;\n                        ideas = data.ideas;\n                        displayIdeas(data.ideas);\n                    } else if (data.error) {\n                        console.error(data.error);\n                    }\n                })\n                .catch(error => console.error('Error fetching batch and ideas:', error));\n        }\n\n        function displayIdeas(ideas) {\n            totalIdeas = ideas.length;\n            const container = document.getElementById('ideasContainer');\n            container.innerHTML = '';\n\n            ideas.forEach((idea, index) => {\n                const ideaDiv = document.createElement('div');\n                ideaDiv.classList.add('idea');\n                if (index === 0) {\n                    ideaDiv.classList.add('active');\n                }\n\n                ideaDiv.innerHTML = `\n                    <p><b>${idea.finalIdea}<\/b><\/p>\n                    <input type=\"hidden\" name=\"ideaID[]\" value=\"${idea.ideaID}\">\n                    <p><b>1. Novelty: How different is it from existing solutions? (1 = Lowest, 5 = Highest):<\/b><\/p>\n                    ${generateScoringOptions('noveltyScore', index)}\n                    <p><b>2. Utility\/Usefulness: How useful is the idea to the user? (1 = Lowest, 5 = Highest):<\/b><\/p>\n                    ${generateScoringOptions('utilityScore', index)}\n                    <p><b>3. Feasibility: How feasible is the idea for implementation? (1 = Lowest, 5 = Highest):<\/b><\/p>\n                    ${generateScoringOptions('feasibilityScore', index)}\n                    <p><b>4. Specificity: How well is the idea \u201cthought out\u201d? (1 = Lowest, 5 = Highest):<\/b><\/p>\n                    ${generateScoringOptions('specificityScore', index)}\n                    <p><b>5. Sustainability: How environmentally friendly is the idea? (1 = Lowest, 5 = Highest):<\/b><\/p>\n                    ${generateScoringOptions('sustainabilityScore', index)}\n                    <p><b>6. Aesthetic Value: What is the aesthetic value of the idea? (1 = Lowest, 5 = Highest):<\/b><\/p>\n                    ${generateScoringOptions('aestheticScore', index)}\n                `;\n                container.appendChild(ideaDiv);\n            });\n\n            updateProgress();\n        }\n\n        function generateScoringOptions(name, index) {\n    let optionsHtml = '';\n    for (let i = 1; i <= 5; i++) {\n        \/\/ Add an event listener to the radio buttons to check form completion\n        optionsHtml += `<label style=\"margin-right:10px;\">\n            <input type=\"radio\" name=\"${name}${index}\" value=\"${i}\" onchange=\"checkFormCompletion()\"> ${i}<\/label>`;\n    }\n    return optionsHtml;\n}\n\n\n        function updateButtonsState() {\n            const nextButton = document.getElementById('nextButton');\n            const prevButton = document.getElementById('prevButton');\n            const ideas = document.querySelectorAll('.idea');\n\n            prevButton.disabled = currentIdeaIndex === 0;\n            nextButton.disabled = currentIdeaIndex === ideas.length - 1;\n        }\nfunction checkFormCompletion() {\n    let allScored = true;\n    ideas.forEach((idea, index) => {\n        const measures = ['noveltyScore', 'utilityScore', 'feasibilityScore', 'specificityScore', 'sustainabilityScore', 'aestheticScore'];\n        \n        measures.forEach(measure => {\n            const selectedOption = document.querySelector(`input[name=\"${measure}${index}\"]:checked`);\n            if (!selectedOption) {\n                allScored = false;\n            }\n        });\n    });\n\n    \/\/ Enable or disable the submit button based on whether all ideas are fully scored\n    document.getElementById('submitButton').disabled = !allScored;\n}\n\n        function nextIdea() {\n            const ideas = document.querySelectorAll('.idea');\n            if (currentIdeaIndex < ideas.length - 1) {\n                ideas[currentIdeaIndex].classList.remove('active');\n                ideas[++currentIdeaIndex].classList.add('active');\n                updateProgress();\n                updateButtonsState();\n            }\n        }\n\n        function previousIdea() {\n            const ideas = document.querySelectorAll('.idea');\n            if (currentIdeaIndex > 0) {\n                ideas[currentIdeaIndex].classList.remove('active');\n                ideas[--currentIdeaIndex].classList.add('active');\n                updateProgress();\n                updateButtonsState();\n            }\n        }\n\n        function updateProgress() {\n            const progressPercentage = ((currentIdeaIndex + 1) \/ totalIdeas) * 100;\n            document.getElementById('progressBar').style.width = `${progressPercentage}%`;\n            document.getElementById('progressText').innerText = `Idea ${currentIdeaIndex + 1} out of ${totalIdeas}`;\n        }\n\n        function submitScores() {\n            let allScored = true;\n\n            const groupID = localStorage.getItem('groupID');\n            const prolificID = localStorage.getItem('prolificID');\n\n            const scoresData = {\n                batchID: currentBatchID,\n                scores: [],\n                groupID: groupID,\n                prolificID: prolificID\n               \n            };\n\n            let incompleteIdeasIndices = [];\n\n            ideas.forEach((idea, index) => {\n                const measures = ['noveltyScore', 'utilityScore', 'feasibilityScore', 'specificityScore', 'sustainabilityScore', 'aestheticScore'];\n                const ideaScores = { ideaID: idea.ideaID, scores: {} };\n                let ideaFullyScored = true;\n\n                measures.forEach(measure => {\n                    const selectedOption = document.querySelector(`input[name=\"${measure}${index}\"]:checked`);\n                    if (!selectedOption) {\n                        allScored = false;\n                        ideaFullyScored = false;\n                    } else {\n                        ideaScores.scores[measure] = parseInt(selectedOption.value);\n                    }\n                });\n\n                if (ideaFullyScored) {\n                    scoresData.scores.push(ideaScores);\n                } else {\n                    incompleteIdeasIndices.push(index + 1);\n                }\n            });\n\n            if (allScored) {\n                submitScoresToServer(scoresData);\n            } else {\n                alert('Not all ideas have been fully scored. Please complete the scoring for idea(s): ' + incompleteIdeasIndices.join(', ') + '.');\n            }\n        }\n\n        function submitScoresToServer(scoresData) {\n            fetch('https:\/\/beams-experiments.com\/coEfficacy\/sendScoresToEvaluationsTable.php', {\n                method: 'POST',\n                headers: {\n                    'Content-Type': 'application\/json',\n                },\n                body: JSON.stringify(scoresData),\n            })\n            .then(response => response.json())\n            .then(data => {\n                console.log('Submission successful', data);\n                if (data.success) {\n                    \/\/calculate task time \n                    var startTime = localStorage.getItem('startTime');\n                    var endTime = Date.now();\n                    \/\/ Calculate the duration in milliseconds\n                    var durationMillis = endTime - startTime;\n                    \/\/ Convert duration to seconds or minutes as needed\n                    var evaluationTaskTime = durationMillis \/ 1000;\n                    localStorage.setItem('evaluationTaskTime', evaluationTaskTime );\n                    console.log('evaluation task Time is ', evaluationTaskTime);\n                    localStorage.setItem('finalTotalTimeNotVisible', totalTimeNotVisible.toString());\n\n                    goToNextTask(); \/\/ Redirect to the next task after successful submission\n                } else {\n                    alert('Submission failed: ' + data.error);\n                }\n            })\n            .catch(error => {\n                console.error('Submission error', error);\n            });\n        }\n\n        \/\/ Total number of pages: 10 (1 pre-task questionnaire, 5 tasks, 1 post-task questionnaire)\n        const totalPages = 15;\n\n        \/\/ Function to update the page progress bar and progress text\n        function updatePageProgressBar(taskIndex) {\n            \/\/ Current page: Pre-task is page 4, tasks are 5-9, and post-task is page 10\n    const currentPage = taskIndex*2 + 5; \/\/ +5 to account for previous pages; *2 to account for each task and its interim questionnaire\n\n            \/\/ Calculate the progress percentage\n            const progressPercentage = (currentPage \/ totalPages) * 100;\n\n            \/\/ Update the page progress bar width\n            document.getElementById('pageProgressBar').style.width = `${progressPercentage}%`;\n\n            \/\/ Update the page progress text\n            document.getElementById('pageProgressText').innerText = `Page ${currentPage} out of ${totalPages}`;\n        }\n    <\/script>\n\n    <p><b>Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents &#8216;not at all&#8217; and 5 represents &#8216;the highest&#8217;:<\/b><\/p>\n    <form id=\"ideasContainer\" onsubmit=\"submitScores(event);\">\n        <!-- Ideas will be dynamically inserted here -->\n    <\/form>\n    <div class=\"buttonContainer\">\n        <button id=\"prevButton\" onclick=\"previousIdea()\">Previous Idea<\/button>\n        <button id=\"nextButton\" onclick=\"nextIdea()\">Next Idea<\/button>\n        <button id=\"submitButton\" disabled onclick=\"submitScores()\">Done<\/button>\n    <\/div>\n\n    <!-- Idea Progress Bar -->\n    <div id=\"progressBarContainer\">\n        <div id=\"progressBar\"><\/div>\n    <\/div>\n    <div id=\"progressText\"><\/div>\n\n    <!-- Page Progress Bar -->\n    <div id=\"pageProgressBarContainer\">\n        <div id=\"pageProgressBar\"><\/div>\n    <\/div>\n    <div id=\"pageProgressText\">Page 1 out of 15<\/div>\n    <div id=\"loadingSpinnerPage\"><\/div>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents &#8216;not at all&#8217; and 5 represents &#8216;the highest&#8217;: Previous Idea Next Idea Done Page 1 out of 15<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"footnotes":""},"class_list":["post-2346","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents &#039;not at all&#039; and 5 represents &#039;the highest&#039;: Previous Idea Next Idea Done Page 1 out of 15\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"beams-experiments.com -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Task-EI-H - beams-experiments.com\" \/>\n\t\t<meta property=\"og:description\" content=\"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents &#039;not at all&#039; and 5 represents &#039;the highest&#039;: Previous Idea Next Idea Done Page 1 out of 15\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-08-05T17:42:38+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-09-11T15:32:15+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Task-EI-H - beams-experiments.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents &#039;not at all&#039; and 5 represents &#039;the highest&#039;: Previous Idea Next Idea Done Page 1 out of 15\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/evaluation-scoring-task-co-efficacy-human\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/beams-experiments.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/evaluation-scoring-task-co-efficacy-human\\\/#listItem\",\"name\":\"Task-EI-H\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/evaluation-scoring-task-co-efficacy-human\\\/#listItem\",\"position\":2,\"name\":\"Task-EI-H\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#organization\",\"name\":\"beams-experiments.com\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/evaluation-scoring-task-co-efficacy-human\\\/#webpage\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/evaluation-scoring-task-co-efficacy-human\\\/\",\"name\":\"Task-EI-H - beams-experiments.com\",\"description\":\"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents 'not at all' and 5 represents 'the highest': Previous Idea Next Idea Done Page 1 out of 15\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/evaluation-scoring-task-co-efficacy-human\\\/#breadcrumblist\"},\"datePublished\":\"2024-08-05T18:42:38+01:00\",\"dateModified\":\"2024-09-11T16:32:15+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#website\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/\",\"name\":\"beams-experiments.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Task-EI-H - beams-experiments.com","description":"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents 'not at all' and 5 represents 'the highest': Previous Idea Next Idea Done Page 1 out of 15","canonical_url":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/beams-experiments.com#listItem","position":1,"name":"Home","item":"https:\/\/beams-experiments.com","nextItem":{"@type":"ListItem","@id":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/#listItem","name":"Task-EI-H"}},{"@type":"ListItem","@id":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/#listItem","position":2,"name":"Task-EI-H","previousItem":{"@type":"ListItem","@id":"https:\/\/beams-experiments.com#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/beams-experiments.com\/#organization","name":"beams-experiments.com","url":"https:\/\/beams-experiments.com\/"},{"@type":"WebPage","@id":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/#webpage","url":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/","name":"Task-EI-H - beams-experiments.com","description":"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents 'not at all' and 5 represents 'the highest': Previous Idea Next Idea Done Page 1 out of 15","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/beams-experiments.com\/#website"},"breadcrumb":{"@id":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/#breadcrumblist"},"datePublished":"2024-08-05T18:42:38+01:00","dateModified":"2024-09-11T16:32:15+01:00"},{"@type":"WebSite","@id":"https:\/\/beams-experiments.com\/#website","url":"https:\/\/beams-experiments.com\/","name":"beams-experiments.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/beams-experiments.com\/#organization"}}]},"og:locale":"en_US","og:site_name":"beams-experiments.com -","og:type":"article","og:title":"Task-EI-H - beams-experiments.com","og:description":"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents 'not at all' and 5 represents 'the highest': Previous Idea Next Idea Done Page 1 out of 15","og:url":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/","article:published_time":"2024-08-05T17:42:38+00:00","article:modified_time":"2024-09-11T15:32:15+00:00","twitter:card":"summary_large_image","twitter:title":"Task-EI-H - beams-experiments.com","twitter:description":"Evaluate Ideas Your task is to score the following ideas for a new sports shoe for a leading footwear company on a scale of 1-5 where 1 represents 'not at all' and 5 represents 'the highest': Previous Idea Next Idea Done Page 1 out of 15"},"aioseo_meta_data":{"post_id":"2346","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-08-05 17:42:39","updated":"2025-06-06 20:53:33","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/beams-experiments.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTask-EI-H\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/beams-experiments.com"},{"label":"Task-EI-H","link":"https:\/\/beams-experiments.com\/index.php\/evaluation-scoring-task-co-efficacy-human\/"}],"_links":{"self":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/2346","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/comments?post=2346"}],"version-history":[{"count":56,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/2346\/revisions"}],"predecessor-version":[{"id":3607,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/2346\/revisions\/3607"}],"wp:attachment":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/media?parent=2346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}