I'm no php ninja myself, but this might help you... tbr_article_family
all you need to do is install and activate this plugin and use tbr_is_decendant_of("place page id here") for testing for subpages (and grandchildren).
so this would make:
function remove_sidebar() {
// We test if we are on the page 'Visualization, with an example page ID of 4'
if ( is_page('Visualizations') || tbr_is_decendant_of(4)) {
// the page is "Visualizations", or the parent of the page is "Visualizations"
// Yes, we are .. now we switch off the sidebar
return FALSE;
} else {
// we are not .. we leave the switch on
return TRUE;
}
}
// Connect the filter to thematic_sidebar()
add_filter('thematic_sidebar', 'remove_sidebar');
hope this helps :D