BTS Profile Height Analysis
Use the previous projects on temperature and BTS member height as a reference to create a chart that uses a graphic as data point marker instead of the previous circle
.
import 'package:flutter/material.dart'; | |
import 'mjpeg_view.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Flutter Demo', |
/** | |
* Copyright 2018 Ricoh Company, Ltd. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 |
/** | |
* Copyright 2018 Ricoh Company, Ltd. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
d3.csv('data/rainfall-by-state.csv').then(data => { | |
data.forEach(stateData => { | |
stateData.rainfall = +stateData.rainfall; | |
const checkChar = /^[A-Z]/; | |
for (let i = 0; i < 5; i++) { | |
if (checkChar.test(stateData.state)) { | |
console.log('found capital letter'); | |
break; | |
} else { | |
stateData.state = stateData.state.substring(1); |
Create folders for
Continuation of data join lesson for Civil War
https://gist.github.com/codetricity/3f4958488fdf87b912988bfa77384661