datajoely
07/05/2021, 1:45 PMnoklam
07/06/2021, 11:52 AMdatajoely
07/06/2021, 11:53 AMdatajoely
07/07/2021, 11:00 AMkedro-viz
check it out here
https://github.com/quantumblacklabs/kedro-viz/blob/main/LAYOUT_ENGINE.mdwaylonwalker
07/07/2021, 4:41 PMdatajoely
07/08/2021, 1:21 PMwaylonwalker
07/08/2021, 3:03 PMwaylonwalker
07/08/2021, 3:38 PMdatajoely
07/08/2021, 3:42 PMiframe
so glitch lets you host any SPA for free, so npm build
and deploy via github!
javascript
import KedroViz from "@quantumblack/kedro-viz";
import * as sourceDomainModel from "./data/source_domain_model.json";
import * as representativePipeline from "./data/complete_demo_pipeline.json";
export const dataSources = {
sourceDomainModel: () => sourceDomainModel.default,
representativePipeline: () => representativePipeline.default,
};
const App = ({ initialData }) => {
const visibleSetting = { sidebar: false, miniMap: false };
return (
<div style={{ height: "100vh" }}>
<KedroViz
data={dataSources.representativePipeline()}
visible={visibleSetting}
/>
</div>
);
};
App.defaultProps = {
initialData: "layers",
};
export default App;
waylonwalker
07/08/2021, 3:48 PMdatajoely
07/08/2021, 3:50 PMintermediate
has retains the structure the data arrives with. With primary
it is restructured for the problem at hand.waylonwalker
07/08/2021, 3:51 PMdatajoely
07/08/2021, 3:53 PMwaylonwalker
07/08/2021, 3:54 PMdatajoely
07/08/2021, 3:56 PMwaylonwalker
07/08/2021, 4:00 PMnoklam
07/10/2021, 9:13 AMdatajoely
07/12/2021, 8:25 AMdebug
and production
runs
https://kedro.readthedocs.io/en/latest/04_kedro_project_setup/02_configuration.html#additional-configuration-environments
https://kedro.readthedocs.io/en/stable/kedro.config.TemplatedConfigLoader.htmlnoklam
07/12/2021, 9:25 AMdatajoely
07/16/2021, 4:43 PMArnaldo
07/16/2021, 5:55 PMArnaldo
07/16/2021, 11:52 PMdatajoely
07/17/2021, 6:32 AMwaylonwalker
07/17/2021, 1:46 PMwaylonwalker
07/17/2021, 1:49 PMwaylonwalker
07/17/2021, 1:52 PMArnaldo
07/18/2021, 12:44 AMfind-kedro
package. That's awesome too. I will use in my next Kedro projects for sure.
Regarding the package, IDK actually. I knew this package yesterday and I don't know the author neither. I just liked the toolkit and thought it could be interesting to share with the community hereuser
07/21/2021, 9:55 AMKedro is an open source data pipeline framework. It provides guardrails to set
your project up right from the start wit
https://waylonwalker.com/what-is-kedrodatajoely
07/21/2021, 9:56 AMdatajoely
07/21/2021, 9:56 AM