Skip to content

Commit

Permalink
Minor Changes
Browse files Browse the repository at this point in the history
merging of discovery into results will be taken in next commit from problem-section
  • Loading branch information
kripanshu committed Oct 22, 2018
1 parent 4f7d19c commit c7ac315
Show file tree
Hide file tree
Showing 3 changed files with 2,009 additions and 2,009 deletions.
3 changes: 2 additions & 1 deletion assets/app/app.js
Expand Up @@ -4711,6 +4711,7 @@ export function modelSelectionResults(problem){
// setTimeout(console.log("we have results data", my_results),10000)
setTimeout(makeDataDiscovery,1000)
setTimeout(makeDiscoverySolutionPlot,1000)
setTimeout(makeDataDiscoveryTable,1000)

}

Expand Down Expand Up @@ -4771,7 +4772,7 @@ export function makeDiscoverySolutionPlot(){
export function makeDataDiscoveryTable(){
console.log("Here we bring our table")
stargazer = solver_res[0]['stargazer']
d3.select("#setDataTable").html("");
// d3.select("#setDataTable").html("");


}
Expand Down
3 changes: 1 addition & 2 deletions assets/app/index.js
Expand Up @@ -476,7 +476,7 @@ function rightpanel(mode) {
]
}),
m('div', {style: {'font-weight': 'bold', 'margin': '1em', 'height': '100%', 'float':'right', 'width': '50%' }},
m(DataTable, {data: ''})),
m(DataTable, {data: app.stargazer})),
m(`div#predictionData[style=display:${app.selectedDiscoverySolutionMenu === 'Prediction Data' ? 'block' : 'none'};height:"90%"; overflow: auto; width: 50%, 'float':'left']`,
m('#setPredictionDataLeft[style=display:block; float: left; width: 100%; height:100%; margin-top:1em; overflow: auto; background-color: white]')
),
Expand Down Expand Up @@ -1039,4 +1039,3 @@ else {
},*/
});
}

0 comments on commit c7ac315

Please sign in to comment.