D3 nested array, extracting non key column
I'm trying to create a multi series line plot with D3 based on nested data (key variable of subgrp). I would like the colour of the stroke line to be determined by a non-key field (grp), but I can't access the value.
I've managed to achieve this using a none D3 approach (appending subgrp and grp and using this as the key), but there must be a more compliant way of doing it. I've looked at a number of similar questions/ tutorial, but haven't been able to get them to work.
A simplified version of the code is below.
Thanks in advance.
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke","red")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
d3.js
add a comment |
I'm trying to create a multi series line plot with D3 based on nested data (key variable of subgrp). I would like the colour of the stroke line to be determined by a non-key field (grp), but I can't access the value.
I've managed to achieve this using a none D3 approach (appending subgrp and grp and using this as the key), but there must be a more compliant way of doing it. I've looked at a number of similar questions/ tutorial, but haven't been able to get them to work.
A simplified version of the code is below.
Thanks in advance.
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke","red")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
d3.js
add a comment |
I'm trying to create a multi series line plot with D3 based on nested data (key variable of subgrp). I would like the colour of the stroke line to be determined by a non-key field (grp), but I can't access the value.
I've managed to achieve this using a none D3 approach (appending subgrp and grp and using this as the key), but there must be a more compliant way of doing it. I've looked at a number of similar questions/ tutorial, but haven't been able to get them to work.
A simplified version of the code is below.
Thanks in advance.
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke","red")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
d3.js
I'm trying to create a multi series line plot with D3 based on nested data (key variable of subgrp). I would like the colour of the stroke line to be determined by a non-key field (grp), but I can't access the value.
I've managed to achieve this using a none D3 approach (appending subgrp and grp and using this as the key), but there must be a more compliant way of doing it. I've looked at a number of similar questions/ tutorial, but haven't been able to get them to work.
A simplified version of the code is below.
Thanks in advance.
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke","red")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke","red")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke","red")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
d3.js
d3.js
asked Jan 2 at 21:59
EasynowEasynow
345
345
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Just access the field you want
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
This worked perfectly thank you!
– Easynow
Jan 3 at 9:32
add a comment |
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013722%2fd3-nested-array-extracting-non-key-column%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just access the field you want
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
This worked perfectly thank you!
– Easynow
Jan 3 at 9:32
add a comment |
Just access the field you want
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
This worked perfectly thank you!
– Easynow
Jan 3 at 9:32
add a comment |
Just access the field you want
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
Just access the field you want
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<body>
<script>
//build the data array
var dataset = [
{"yval": 1,"xval": 4,"grp":"a",subgroup:"sg1"}
,{"yval": 10,"xval": 20,"grp":"a",subgroup:"sg1"}
,{"yval": 30,"xval": 30,"grp":"a",subgroup:"sg2"}
,{"yval": 40,"xval": 10,"grp":"a",subgroup:"sg2"}
,{"yval": 10,"xval": 30,"grp":"b",subgroup:"sg3"}
,{"yval": 30,"xval": 40,"grp":"b",subgroup:"sg3"}
,{"yval": 0.4,"xval": 10,"grp":"b",subgroup:"sg4"}
,{"yval": 50,"xval": 90,"grp":"b",subgroup:"sg4"}
]
//nest the data on the subgroup
var dataNest = d3.nest()
.key(function(d) {return d.subgroup;})
.entries(dataset);
//line generator
var line = d3.line()
.x(function(d) { return d.xval; })
.y(function(d) { return d.yval; })
//add an svg element
svg=d3.select("body")
.append("svg");
//for each subgroup plot a distinct line
dataNest.forEach(function(d,i) {
svg.append("path")
.attr("d", line(d.values))
.style("stroke", e => d.values[0].grp == "a" ? "red" : "blue")
//style colour should be driven by an if clause based on the grp field
});
</script>
</html>
answered Jan 2 at 22:57
rioV8rioV8
4,5142312
4,5142312
This worked perfectly thank you!
– Easynow
Jan 3 at 9:32
add a comment |
This worked perfectly thank you!
– Easynow
Jan 3 at 9:32
This worked perfectly thank you!
– Easynow
Jan 3 at 9:32
This worked perfectly thank you!
– Easynow
Jan 3 at 9:32
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54013722%2fd3-nested-array-extracting-non-key-column%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown