Published
Edited
Dec 10, 2018
Exploration of NASA Acronyms with Multiple MeaningsCode.nasa.gov Data ExplorationsUntitledUntitledQuick Exploration of a selected subset of the DATA.NASA.GOV's data.json file. Not all the metadata but a selection so people can understand the fields that exist in the data schema.UntitledUntitledComparing human-generated vs. A.I.-generated keyword tags on Code.nasa.govFind Labor Hours To Generate OpenSouce NASA Code Since A Selected DateNASA's Open-Source Code Projects: NLP Generated Tags ClusterStars and constellations IIExoplanetsPublic Engagement with NASA's Open-Source Code Projects on GithubMapping Across TimeFinding Recent Additions to Code.nasa.govVisitors to .gov websites via API from analytics.usa.gov. NASA examplesLicenses of Open-Source NASA code projects on code.govNASA's Open-Source Code ProjectsMeteorite landingsUntitledPhases of the MoonInverted Nasa PhotosAsteroids API <a href="https://api.nasa.gov/api#neows-swagger">(N.E.O.)</a> ExplorationNASA Api ExplorerGithub Api ExplorerColor Rendering of SpectraMeteorite landings
Global Temperature Trends
Working with data from transcriptsWorld Population Line GraphsGeometric Algebra Solar System SimulationList of Agencies using NOSA License in Projects on code.govGlobal surface temperature changeGISTEMP nos enseña sobre el calentamiento globalRe: “Can Moons Have Moons?”Distance to shoreEPIC “Blue Marble” BrowserRequest PlaygroundAnálisis de temperatura de superficie GISS (GISTEMP)Global Temperature TrendsNight Skies — Lights and Light Pollution WebGL GlobeSatellite ground track visualizerPt. 2 Can sound add value to data visualizations?
Insert cell
Insert cell
{
const p = document.createElement("div");
p.appendChild(document.createTextNode("I am also a "));
p.appendChild(document.createElement("i")).appendChild(document.createTextNode("paragraph"));
p.appendChild(document.createTextNode(" element!"));
console.log(p);
return p;
}
Insert cell
{
const svg = d3.select(DOM.svg(width, height));
svg.append("g")
.call(xAxis);
svg.append("g")
.call(yAxis);
svg.append("g")
.attr("stroke", "#000")
.attr("stroke-opacity", 0.2)
.selectAll("circle")
.data(data)
.enter().append("circle")
.attr("cx", d => x(d.date))
.attr("cy", d => y(d.value))
.attr("fill", d => z(d.value))
.attr("r", 2.5)
.on("click",function(d){
popup.html(absoluteUrl("Google", "www.google.com")
+ absoluteUrl("Youtube", "www.youtube.com")
+ absoluteUrl("Techcrunch", "www.techcrunch.com"))
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY + 20) + "px")
.style("opacity",1.0)
.append("text")
// .select("text")
.text("X")
.on("click", function(d) {
popup.style("opacity",0.0);
})
console.log(popup);
// })
// .on("click",function(d){
// /* 鼠标移动时,更改样式 left 和 top 来改变提示框的位置 */
// popup.style("left", (d3.event.pageX) + "px")
// .style("top", (d3.event.pageY + 50) + "px")
// .on("mouseout",function(d){
// /* 鼠标移出时,将透明度设定为0.0(完全透明)*/
// popup.style("opacity",0.0);
})
// console.log(d3.select("#popup"));
// var cross = d3.select("#popup")
// .append("text")
// .text("This is my new text")
// // .style("opacity", 1)
// .on("click", function(d) {
// popup.style("opacity",0.0);
// // cross.style("opacity", 0.0);
// })
// console.log(cross);
// })
// .on("mouseout",function(d){
// /* 鼠标移出时,将透明度设定为0.0(完全透明)*/
// popup.style("opacity",0.0);
// })


return svg.node();
}
Insert cell
Insert cell
absoluteUrl = (title, url) => {
return "<p><a target=" + "_blank " + "href=https://" + url + "> " + title + "</a></p>";
}
Insert cell
tooltip=html`
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.tooltip{
position: absolute;
width: 120;
height: auto;
font-family: simsun;
font-size: 14px;
text-align: center;
border-style: solid;
border-width: 1px;
background-color: white;
border-radius: 5px;
}
</style>
`
Insert cell
rawData = {
return await d3.csv("https://gist.githubusercontent.com/ChelseaZheng/62c61bf50b7a32c19995783330d4fdf4/raw/5936c82847b5c6bbbec9023db9a3ae0326f7901a/2018facebook_final.csv")
}
Insert cell
data = {
const data = [];
// https://data.giss.nasa.gov/gistemp/tabledata_v3/GLB.Ts+dSST.csv
for (var i = 0; i < rawData.length; i++) {
// var arr = rawData[i].dates.split("/");
data.push({
date: parse(rawData[i].dates),
value: rawData[i].scores
});
}
return data;
}
Insert cell
aveData = {
// console.log(rawData);
var expensesAvgAmount = d3.nest()
.key(function(d) {
// console.log(d);
return (d.date); })
.rollup(function(v) { return d3.mean(v, function(d) { return d.value; }); })
.entries(data);
// console.log(JSON.stringify(expensesAvgAmount));
return expensesAvgAmount;
}
Insert cell
height = 600
Insert cell
margin = ({top: 20, right: 30, bottom: 30, left: 40})
Insert cell
x = d3.scaleTime()
.domain(d3.extent(data, d => d.date))
.range([margin.left, width - margin.right])
Insert cell
y = d3.scaleLinear()
.domain(d3.extent(data, d => d.value)).nice()
.range([height - margin.bottom, margin.top])
Insert cell
z = {
const max = d3.max(data, d => Math.abs(d.value));
return d3.scaleSequential(d3.interpolateRdBu).domain([max, -max]);
}
Insert cell
xAxis = g => g
.attr("transform", `translate(0,${height - margin.bottom})`)
.call(d3.axisBottom(x).ticks(width / 80))
.call(g => g.select(".domain").remove())
Insert cell
yAxis = g => g
.attr("transform", `translate(${margin.left},0)`)
.call(d3.axisLeft(y).ticks(null, "+"))
.call(g => g.select(".domain").remove())
.call(g => g.selectAll(".tick line")
.filter(d => d === 0)
.clone()
.attr("x2", width - margin.right - margin.left)
.attr("stroke", "#ccc"))
.call(g => g.append("text")
.attr("fill", "#000")
.attr("x", 5)
.attr("y", margin.top)
.attr("dy", "0.32em")
.attr("text-anchor", "start")
.attr("font-weight", "bold")
.text("Anomaly (°C)"))
Insert cell
d3 = require("d3@5")
Insert cell
line = d3.line()
.x(d => x(d.date))
.y(d => y(d.value))
Insert cell
allStockRawData = {
return await d3.csv("https://gist.githubusercontent.com/ChelseaZheng/54a74f61a30cd4d32e1d0bf9ded1d8a5/raw/e8895edb6510c89200aa8829a518c824dfd2e73b/fb_stock_price.csv")
}
Insert cell
yearStockData = {var yearStockData = d3.nest()
.key(function(d) { return d.date; })
.entries(allStockRawData);

return yearStockData;}
Insert cell
parse = d3.timeParse("%m/%d/%Y")
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