I've used SPSS to generate a CHAID tree.It does an automatic binning of continuous variables and returns Chi-squared value and Degrees of freedom which is not found in the summary function of R.Below is a partial sample output.
Node 0 1 Total PC Parent Variable Sig.a Chi-Square df Split Values
N Percent N Percent N Percent
0 148025 84.0% 28111 16.0% 176136 100.0% 0
1 102390 93.9% 6643 6.1% 109033 61.9% 0 0 SALES1 0.000 42991.370 4 <= .000
2 12600 91.3% 1194 8.7% 13794 7.8% 0 0 SALES1 0.000 42991.370 4 (.000,149.990]
3 15140 83.7% 2942 16.3% 18082 10.3% 0 0 SALES1 0.000 42991.370 4 (149.990,1044.000]
What R returns is this:
https://stackoverflow.com/questions/32739093/what-are-the-available-chaid-summary-functions-in-r
I've found ways to tap into the tree output and play around with it like this example:
chaid regression tree to table conversion in r
Are there functions to get a SPSS kind of output in R or python or must it all be done manually with the partykit package in R?