Zend certified PHP/Magento developer

Removing tax block from sales_order_view cause subtotal showing without tax

I have removed tax block from all sales page by adding following code.

layout file is Magento_Saleslayoutdefault.xml

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceBlock name="tax" remove="true"/>
    </body>
</page>

Actual Resultsenter image description here


Expected Resultenter image description here

How can I make subtotal shows including tax but tax line is removed by <referenceBlock name="tax" remove="true"/> ?