Public
Edited
Jun 27, 2023
Importers
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
resumeCountryAccessPublicFunding = html`
${
_myCountryAccess === "Yes"
? chunkAccessYes
: _myCountryAccess === "Depends"
? chunkAccessDepends
: _myCountryAccess === "No"
? chunkAccessNo
: _myCountryAccess === "NoPublicFunding"
? chunkAccessNoPublicFunding
: chunkAccessNotAvailable
}
`
Insert cell
chunkAccessNoPublicFunding = html`
${locale[_languageSelector].chunkAccessNoPublicFunding}
`
Insert cell
chunkAccessYes = html`
${locale[_languageSelector].chunkAccessYes}
`
Insert cell
chunkAccessDepends = html`
${locale[_languageSelector].chunkAccessDepends}
`
Insert cell
chunkAccessNo = html`
${locale[_languageSelector].chunkAccessNo}
`
Insert cell
chunkAccessNotAvailable = html`
${locale[_languageSelector].chunkAccessNotAvailable}
`
Insert cell
Insert cell
Insert cell
Insert cell
publicFundingNotesExtra = html`

<div class="ART-note extra">

${
myCountryNotesVisibleScenario.length
? `<ul>
${myCountryNotesVisibleScenario
.map(
(d) => `<li><i>${
d.category === "ALL" || d.category === ""
? `${locale[_languageSelector].noteGeneral}: <span>${
_languageSelector === "es"
? d.revised_notes_ES
: _languageSelector === "it"
? d.revised_notes_IT
: d.revised_notes
}</span>`
: `${locale[_languageSelector].noteAbout} ${
locale[_languageSelector][d.category]
}: <span>${
_languageSelector === "es"
? d.revised_notes_ES
: _languageSelector === "it"
? d.revised_notes_IT
: d.revised_notes
}</span>`
}
</i></li>`
)
.join("")}
</ul>
`
: ""
}

</div>

`
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
unableBlockPublicFunding = html`<p class="unable-block" style="display: ${
_myCountryIsUnable === "Yes" ||
_myCountryAccessSubtechniques === "No" ||
_myCountryAccessLegalAge === "No"
? "block"
: "none"
};">

${
_myCountryAccessSubtechniques === "No"
? locale[_languageSelector].unableBlock1
: ""
}

${
_myCountryAccessSubtechniques === "No" && _myCountryAccessLegalAge === "No"
? locale[_languageSelector].unableBlock2
: ""
}

${
_myCountryAccessSubtechniques === "Yes" && _myCountryAccessLegalAge === "No"
? locale[_languageSelector].unableBlock3
: ""
}
</p>`
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
// Picking legal values if there are no public funding limits
minValue_female = publicFundingMinValue_female === 1
? legalMinValue_female
: publicFundingMinValue_female
Insert cell
// Picking legal values if there are no public funding limits
maxValue_female = publicFundingMaxValue_female === 100
? legalMaxValue_female
: publicFundingMaxValue_female
Insert cell
// Picking legal values if there are no public funding limits
minValue_male = publicFundingMinValue_male === 1
? legalMinValue_male
: publicFundingMinValue_male
Insert cell
// Picking legal values if there are no public funding limits
maxValue_male = publicFundingMaxValue_male === 100
? legalMaxValue_male
: publicFundingMaxValue_male
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
//filterFromBlackToColorNoAccess = "invert(0.4) sepia(1) saturate(4) hue-rotate(305deg)"
Insert cell
//filterFromBlackToColorAccess = "invert(0.5) sepia(1) saturate(4) hue-rotate(140deg)"
Insert cell
//filterFromBlackToDepends = "invert(0.7)"
//filterFromBlackToDepends = "invert(0.51) sepia(0.21) saturate(4.47) hue-rotate(253deg) brightness(0.93) contrast(0.89)"
Insert cell
Insert cell
Insert cell
// Adding date as parameter to avoid cache problems with any data update
dateId = new Date().getTime()
Insert cell
Insert cell
Insert cell
datasetGeneralPublicFunding = {
const data = await d3.csv(
URLdataset_publicGeneral,
({
country_code,
country_name,
legal_limits,
female_minAge,
female_maxAge,
male_minAge,
male_maxAge,
female_BMI,
female_BMI_es,
parity,
parity_es,
copayment_short_en,
copayment_short_es
}) => ({
country_code: country_code,
country_name: country_name,
legal_limits: legal_limits,
female_minAgeOriginal:
female_minAge === "No" || female_minAge === ""
? 1
: female_minAge === "reproductive age" ||
female_minAge === "NotAvailable"
? female_minAge
: +female_minAge,
female_maxAgeOriginal:
female_maxAge === "No" || female_maxAge === ""
? 100
: female_maxAge === "reproductive age" ||
female_maxAge === "NotAvailable"
? female_maxAge
: +female_maxAge,
male_minAgeOriginal:
male_minAge === "No" || male_minAge === ""
? 1
: male_minAge === "reproductive age" || male_minAge === "NotAvailable"
? male_minAge
: +male_minAge,
male_maxAgeOriginal:
male_maxAge === "No" || male_maxAge === ""
? 100
: male_maxAge === "reproductive age" || male_maxAge === "NotAvailable"
? male_maxAge
: +male_maxAge,
female_BMI: _languageSelector === "es" ? female_BMI_es : female_BMI,
parity: _languageSelector === "es" ? parity_es : parity,
copayment:
_languageSelector === "es"
? copayment_short_es !== "No" && copayment_short_es
? copayment_short_es
: ""
: copayment_short_en !== "No" && copayment_short_en
? copayment_short_en
: ""
})
);

// Sorting by country name alphabetically
return data
.filter((d) => d.country_code !== "")
.sort((a, b) => d3.ascending(a.country_name, b.country_name))
.map((d) => ({
...d,
female_minAge:
d.female_minAgeOriginal === 1
? datasetGeneral.find((e) => e.country_code === d.country_code)[
"female_minAge"
]
: d.female_minAgeOriginal,
female_maxAge:
d.female_maxAgeOriginal === 100
? datasetGeneral.find((e) => e.country_code === d.country_code)[
"female_maxAge"
]
: d.female_maxAgeOriginal,
male_minAge:
d.male_minAgeOriginal === 1
? datasetGeneral.find((e) => e.country_code === d.country_code)[
"male_minAge"
]
: d.female_minAgeOriginal,
male_maxAge:
d.male_maxAgeOriginal === 100
? datasetGeneral.find((e) => e.country_code === d.country_code)[
"male_maxAge"
]
: d.male_maxAgeOriginal
}));
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
localeArtTechniques = ({
en: {
Insemination: "artificial insemination",
"In Vitro": "in vitro fertilisation"
},
es: {
Insemination: "inseminación artificial",
"In Vitro": "fecundación in vitro"
},
it: {
Insemination: "inseminazione artificiale",
"In Vitro": "fecondazione in vitro"
},
fr: {
Insemination: "insémination artificiell",
"In Vitro": "fécondation in vitro"
},
el: {
Insemination: "τεχνητή γονιμοποίηση",
"In Vitro": "εξωσωματική γονιμοποίηση"
}
})
Insert cell
locale = ({
en: {
dontApply: "Don't apply",
notAvailable: "Not available",

restrictionsBMI: "BMI restrictions: ",
restrictionsParity: "Parity restrictions: ",
restrictionsCopayment: "Copayment: ",

femaleLimits: "FEMALE limits",
tooOld: "Too old",
tooYoung: "Too young",
noLimit: "No limit",
repAge: "Reprod. age",
maleLimits: "MALE limits",

chunkAccessNoPublicFunding: `<p class="resume-access-no"> <span class="access-noPublicFunding">${
_myCountryData["country_code"]
}: ${
localeCountries["en"].countries[_myCountryData["country_code"]]
}</span> there is <strong>no public funding</strong> for assisted reproduction
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessYes: `<p class="resume-access-yes">In <span class="access-yes">${
_myCountryData["country_code"]
}: ${
localeCountries["en"].countries[_myCountryData["country_code"]]
}</span> you <strong> ${
_myCountryIsUnable === "Yes" ? "could" : "can"
} get </strong> public funding for your treatment because of <strong><span class="avatar-result">your age </span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessDepends: `<p class="resume-access-depends">In <span class="access-depends">${
_myCountryData["country_code"]
}: ${
localeCountries["en"].countries[_myCountryData["country_code"]]
}</span> you ${
_myCountryIsUnable === "Yes" ? "could" : "can"
} <strong>get public funding </strong> for your treatment <strong><span class="avatar-result">if you are of reproductive age </span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessNo: `<p class="resume-access-no">In <span class="access-no">${
_myCountryData["country_code"]
}: ${
localeCountries["en"].countries[_myCountryData["country_code"]]
}</span> <strong>you cannot get public funding </strong> for your treatment because of <strong><span class="avatar-result">your age </span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessNotAvailable: `<p class="resume-access-notAvailable">Information not available in <span class="access-notAvailable">${
_myCountryData["country_code"]
}: ${localeCountries["en"].countries[_myCountryData["country_code"]]}</span>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

unableBlock1: `❌ Remember that the law <strong>does not allow</strong> you access public or private assisted reproduction because of <strong><span class="avatar-result">your personal situation </span></strong> (two steps before ↑↑)`,
unableBlock2: ` and your age (previous step ↑)`,
unableBlock3: `❌ Remember that the law <strong>does not allow</strong> you to access either public or private assisted reproduction because of <strong><span class="avatar-result">your age </span></strong> (previous step ↑)`,

noteGeneral: "(*) Note",
noteAbout: "(*) Note about",

female_maxAge: "female maximum age",
female_minAge: "female minimum age",
male_maxAge: "male maximum age",
male_minAge: "male minimum age",
female_BMI: "Body Mass Index (BMI)",
legal_limits: "legal limits"
},
es: {
dontApply: "No aplica",
notAvailable: "No disponible",

restrictionsBMI: "Restricciones por Índice de Masa Corporal (BMI): ",
restrictionsParity: "Restricciones por maternidad previa: ",
restrictionsCopayment: "Copago: ",

femaleLimits: "Límites MUJER",
tooOld: "Demasiado mayor",
tooYoung: "Demasiado joven",
noLimit: "Sin límite",
repAge: "Edad reprod.",
maleLimits: "Límites HOMBRE",

chunkAccessNoPublicFunding: `<p class="resume-access-no">En <span class="access-noPublicFunding">${
_myCountryData["country_code"]
}: ${
localeCountries["es"].countries[_myCountryData["country_code"]]
}</span> no hay <strong>financiación pública </strong> en reproducción asistida
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessYes: `<p class="resume-access-yes">En <span class="access-yes">${
_myCountryData["country_code"]
}: ${
localeCountries["es"].countries[_myCountryData["country_code"]]
}</span> <strong>${
_myCountryIsUnable === "Yes" ? "podrías" : "puedes"
}</strong> obtener <strong>financiación pública</strong> para tu tratamiento </strong> por <strong><span class="avatar-result">tu edad </span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessDepends: `<p class="resume-access-depends">En <span class="access-depends">${
_myCountryData["country_code"]
}: ${
localeCountries["es"].countries[_myCountryData["country_code"]]
}</span> ${
_myCountryIsUnable === "Yes" ? "podrías" : "puedes"
} <strong>obtener </strong> financiación pública <strong>para tu tratamiento</strong> <strong><span class="avatar-result">si estás en edad reproductiva</span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessNo: `<p class="resume-access-no">En <span class="access-no">${
_myCountryData["country_code"]
}: ${
localeCountries["es"].countries[_myCountryData["country_code"]]
}</span> <strong>no puedes</strong> obtener <strong>financiación pública</strong> para tu tratamiento </strong> por <strong><span class="avatar-result">tu edad </span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessNotAvailable: `<p class="resume-access-notAvailable">Información no disponible en <span class="access-notAvailable">${
_myCountryData["country_code"]
}: ${localeCountries["es"].countries[_myCountryData["country_code"]]}</span>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

unableBlock1: `❌ Recuerda que la ley <strong>no te permite</strong> acceder ni por lo público ni por lo privado por <strong><span class="avatar-result">tu situación personal </span></strong> (dos pasos antes ↑↑)`,
unableBlock2: `y tampoco por tu edad (paso anterior ↑)`,
unableBlock3: `❌ Recuerda que la ley <strong>no te permite</strong> acceder ni por lo público ni por lo privado por <strong><span class="avatar-result">tu edad </span></strong> (paso anterior ↑)`,

noteGeneral: "(*) Nota",
noteAbout: "(*) Nota sobre",

female_maxAge: "la edad máxima femenina",
female_minAge: "la edad mínima femenina",
male_maxAge: "la edad máxima masculina",
male_minAge: "la edad mínima masculina",
female_BMI: "el Índice de Masa Corporal (IMC)",
legal_limits: "los límites legales"
},
it: {
dontApply: "Non applicare",
notAvailable: "Non disponibili",

restrictionsBMI: "Restrizioni per Indice di Massa Corporea (BMI): ",
restrictionsParity: "Restrizioni per maternità precedente: ",
restrictionsCopayment: "Ticket: ",

femaleLimits: "Limiti DONNE",
tooOld: "Troppo anziano/a",
tooYoung: "Troppo giovane",
noLimit: "Nessun limite",
repAge: "Età riproduttiva",
maleLimits: "Limiti UOMINI",

chunkAccessNoPublicFunding: `<p class="resume-access-no">In <span class="access-noPublicFunding">${
_myCountryData["country_code"]
}: ${
localeCountries["it"].countries[_myCountryData["country_code"]]
}</span> non ci sono <strong>finanziamenti pubblici</strong> per la riproduzione assistita
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessYes: `<p class="resume-access-yes">In <span class="access-yes">${
_myCountryData["country_code"]
}: ${
localeCountries["it"].countries[_myCountryData["country_code"]]
}</span> <strong>${
_myCountryIsUnable === "Yes" ? "potresti" : "puoi"
}</strong> ottenere <strong>finanziamenti pubblici</strong> per il tuo trattament</strong> a causa della <strong><span class="avatar-result">tua età</span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessDepends: `<p class="resume-access-depends">In <span class="access-depends">${
_myCountryData["country_code"]
}: ${
localeCountries["it"].countries[_myCountryData["country_code"]]
}</span> ${
_myCountryIsUnable === "Yes" ? "potresti" : "puoi"
} <strong>ottenere </strong> finanziamenti pubblici, <strong><span class="avatar-result">a seconda della tua età riproduttiva</span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessNo: `<p class="resume-access-no">In <span class="access-no">${
_myCountryData["country_code"]
}: ${
localeCountries["it"].countries[_myCountryData["country_code"]]
}</span> <strong>non puoi</strong> ottenere <strong>finanziamenti pubblici</strong> per il tuo trattament </strong> por <strong><span class="avatar-result">a causa della tua età</span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessNotAvailable: `<p class="resume-access-notAvailable">Informazioni non disponibili in <span class="access-notAvailable">${
_myCountryData["country_code"]
}: ${localeCountries["it"].countries[_myCountryData["country_code"]]}</span>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

unableBlock1: `❌ Ricorda che la legge <strong>non ti permette</strong> di accedere a riproduzione assistita pubblica o privata a causa della <strong><span class="avatar-result">tua situazione personale </span></strong> (step precedente ↑ )`,
unableBlock2: `e a causa della tua età (step precedente ↑).`,
unableBlock3: `❌ Ricorda che la legge <strong>non ti permette</strong> di accedere a riproduzione assistita pubblica o privata a causa della <strong><span class="avatar-result">tua età </span></strong> (step precedente ↑ )`,
noteGeneral: "(*) Nota",
noteAbout: "(*) Nota riguardo",

female_maxAge: "età massima femminile",
female_minAge: "età minima femminile",
male_maxAge: "età massima maschile",
male_minAge: "età minima maschile",
female_BMI: "Indice di Massa Corporea (BMI)",
legal_limits: "limiti legali"
},
fr: {
dontApply: "No aplica",
notAvailable: "Informations non disponibles",
restrictionsBMI:
"Restrictions liées à l'indice de masse corporelle (IMC): ",
restrictionsParity: "Restrictions pour cause de maternité préalable : ",
restrictionsCopayment: "Ticket modérateur: ",

femaleLimits: "Limites FEMMES",
tooOld: "Trop âgée",
tooYoung: "Trop jeune",
noLimit: "Aucune limite",
repAge: "Âge de procréation",
maleLimits: "Limites HOMMES",
chunkAccessNoPublicFunding: `<p class="resume-access-no">En <span class="access-noPublicFunding">${
_myCountryData["country_code"]
}: ${
localeCountries["fr"].countries[_myCountryData["country_code"]]
}</span> la procréation assistée ne fait l’objet d’aucun <strong>financement public</strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,
chunkAccessYes: `<p class="resume-access-yes">En <span class="access-yes">${
_myCountryData["country_code"]
}: ${
localeCountries["fr"].countries[_myCountryData["country_code"]]
}</span> vous <strong>${
_myCountryIsUnable === "Yes" ? "pourriez" : "pouvez"
}</strong> obtenir <strong>des fonds publics</strong> pour votre traitament </strong>en raison de <strong><span class="avatar-result">votre âge </span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,
chunkAccessDepends: `<p class="resume-access-depends">En <span class="access-depends">${
_myCountryData["country_code"]
}: ${
localeCountries["fr"].countries[_myCountryData["country_code"]]
}</span> vous ${
_myCountryIsUnable === "Yes" ? "pourriez" : "pouvez"
} <strong>obtenir </strong> des fonds publics <strong>pour votre traitament</strong> <strong><span class="avatar-result">en foction de votre âge de procréation</span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,
chunkAccessNo: `<p class="resume-access-no">En <span class="access-no">${
_myCountryData["country_code"]
}: ${
localeCountries["fr"].countries[_myCountryData["country_code"]]
}</span> <strong>vous ne pouvez pas</strong> obtenir <strong>de fonds publics </strong> pour votre traitament </strong> en raison de <strong><span class="avatar-result">votre âge </span></strong> ${
myCountryNotes.length ? "(*)" : ""
}
</p>`,
chunkAccessNotAvailable: `<p class="resume-access-notAvailable">Informations non disponibles pour <span class="access-notAvailable">${
_myCountryData["country_code"]
}: ${localeCountries["fr"].countries[_myCountryData["country_code"]]}</span>
${myCountryNotes.length ? "(*)" : ""}
</p>`,
unableBlock1: `❌ N’oubliez pas que la loi <strong>ne vous autorise pas</strong> à accéder aux traitements publics ou privés de procréation assistée en raison de <strong><span class="avatar-result">votre situation personnelle </span></strong> (deux étapes précédentes ↑↑)`,
unableBlock2: `et de votre âge (étape précédente ↑).`,
unableBlock3: `❌ N’oubliez pas que la loi <strong>ne vous autorise pas</strong> à accéder aux traitements publics ou privés de procréation assistée en raison de <strong><span class="avatar-result">votre âge </span></strong> (étape précédente ↑)`,
noteGeneral: "(*) Remarque:",
noteAbout: "(*) Remarque au sujet de:",

female_maxAge: "âge maximal pour les femmes",
female_minAge: "âge minimal pour les femmes",
male_maxAge: "âge maximal pour les hommes",
male_minAge: "âge minimal pour les hommes",
female_BMI: "Indice de masse corporelle (IMC)",
legal_limits: "limites légales"
},
el: {
notAvailable: "Μη διαθέσιμες πληροφορίες για",

restrictionsBMI: "Περιορισμοί δείκτη μάζας σώματος: ",
restrictionsParity: "Περιορισμοί ισοτιμίας: ",
restrictionsCopayment: "Συμπληρωματική πληρωμή: ",

femaleLimits: "Όρια ΓΥΝΑΙΚΩΝ",
tooOld: "Πολύ μεγάλη",
tooYoung: "Πολύ νέα",
noLimit: "Κανένα όριο",
repAge: "Αναπαραγωγική ηλικία",
maleLimits: "Όρια ΑΝΔΡΩΝ",

chunkAccessNoPublicFunding: `<p class="resume-access-no">Στην <span class="access-noPublicFunding">${
_myCountryData["country_code"]
}: ${
localeCountries["el"].countries[_myCountryData["country_code"]]
}</span> δεν υπάρχει <strong>δημόσια χρηματοδότηση</strong> για την υποβοηθούμενη αναπαραγωγή
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessYes: `<p class="resume-access-yes">Στην <span class="access-yes">${
_myCountryData["country_code"]
}: ${
localeCountries["el"].countries[_myCountryData["country_code"]]
}</span> <strong>${
_myCountryIsUnable === "Yes" ? "μπορείτε" : "θα μπορούσατε"
}</strong> να λάβετε <strong>δημόσια χρηματοδότηση</strong> για τη θεραπεία σας</strong>
</p>`,

chunkAccessDepends: `<p class="resume-access-depends">Στην <span class="access-depends">${
_myCountryData["country_code"]
}: ${
localeCountries["el"].countries[_myCountryData["country_code"]]
}</span> ενδέχεται να <strong>μπορείτε </strong> να λάβετε δημόσια <strong>χρηματοδότηση για τη θεραπεία σας, </strong>ανάλογα με τη<strong><span class="avatar-result"> δική σας αναπαραγωγική ηλικία.</span></strong>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

chunkAccessNo: `<p class="resume-access-no">Στην <span class="access-no">${
_myCountryData["country_code"]
}: ${
localeCountries["el"].countries[_myCountryData["country_code"]]
}</span> <strong>δεν μπορείτε</strong> να λάβετε <strong>δημόσια χρηματοδότηση </strong> για τη θεραπεία σας
${myCountryNotes.length ? "(*)" : ""}
</p>`,
chunkAccessNotAvailable: `<p class="resume-access-notAvailable">Μη διαθέσιμες πληροφορίες για <span class="access-notAvailable">${
_myCountryData["country_code"]
}: ${localeCountries["el"].countries[_myCountryData["country_code"]]}</span>
${myCountryNotes.length ? "(*)" : ""}
</p>`,

unableBlock1: `❌ Να θυμάστε ότι ο νόμος <strong>δεν σας επιτρέπει</strong> πρόσβαση σε δημόσια ή ιδιωτική υποβοηθούμενη αναπαραγωγή λόγω της προσωπικής <strong><span class="avatar-result">σας κατάστασης </span></strong> (προηηούμενο βήμα↑)`,
unableBlock2: `και όχι λόγω της ηλικίας σας (προηγούμενο βήμα ↑)`,
unableBlock3: `❌ Να θυμάστε ότι ο νόμος <strong>δεν σας επιτρέπει</strong> να έχετε πρόσβαση σε δημόσια ή ιδιωτική υποβοηθούμενη αναπαραγωγή λόγω <strong><span class="avatar-result">της ηλικίας σας</span></strong> (προηγούμενο βήμα ↑)`,

noteGeneral: "(*) Σημείωση",
noteAbout: "(*) Σημείωση για",

female_maxAge: "μέγιστη ηλικία γυναίκας",
female_minAge: "ελάχιστη ηλικία γυναίκας",
male_maxAge: "μέγιστη ηλικία άνδρα",
male_minAge: "ελάχιστη ηλικία άνδρα",
female_BMI: "Δείκτης Μάζας Σώματος (ΔΜΣ)",
legal_limits: "νομικά όρια"
}
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more