Jump to content

Display numeric value of League Average in data analyst visualisation large.xml


 Share

Recommended Posts

Hello everybody,

I wonder whether it is possible to make the numeric values, used to create the graphical stats representation in the data analyst visualisation large.xml visible for the Leagues' average as well. At the moment we'll only see the players stats, but since the Leagues' averages are used to create in the visualisation, there might be some way to show them in this screen as well?

1942464617_Screenshot2021-04-17at11_32_51.thumb.png.00d61a8380710739453cb19771299a22.png

Or is there any other panel in FM we are able to extract the League averages from?

 

Thanks in advance :)

Link to post
Share on other sites

I can direct you to my thread about this but besides these panels/widgets you can't interact, edit or manipulate the values of polygons or scatter plots that they gather from game.

Here is the every polygon about teams; If you want to use polygons for players you have to change data_type="1" to data_type="2"

Spoiler

    <widget class="data_analyst_visualisation_widget" id="poly"  visualisation_type="3" data_type="1"  category="0" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon General Performance" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly1"  visualisation_type="3" data_type="1"  category="1" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Team Attacking" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly2"  visualisation_type="3" data_type="1"  category="2" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Team Defending" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly3"  visualisation_type="3" data_type="1"  category="3" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Defending" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly4"  visualisation_type="3" data_type="1"  category="4" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon DM" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly5"  visualisation_type="3" data_type="1"  category="5" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Wide Play" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly6"  visualisation_type="3" data_type="1"  category="6" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Pressing" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly7"  visualisation_type="3" data_type="1"  category="7" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Tackling" />
    </widget>    
    
    <widget class="data_analyst_visualisation_widget" id="poly8"  visualisation_type="3" data_type="1"  category="8" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Midfield" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly9"  visualisation_type="3" data_type="1"  category="9" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Creativity" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly10"  visualisation_type="3" data_type="1"  category="10" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Heading" />
    </widget>    
    
    <widget class="data_analyst_visualisation_widget" id="poly11"  visualisation_type="3" data_type="1"  category="11" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Conversion" />
    </widget>
        
    <widget class="data_analyst_visualisation_widget" id="poly12"  visualisation_type="3" data_type="1"  category="12" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Wider Play" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly13"  visualisation_type="3" data_type="1"  category="13" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Attacking" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly14"  visualisation_type="3" data_type="1"  category="14" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Movement" />
    </widget>
        
    <widget class="data_analyst_visualisation_widget" id="poly15"  visualisation_type="3" data_type="1"  category="15" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Shooting" />
    </widget>

    <widget class="data_analyst_visualisation_widget" id="poly16"  visualisation_type="3" data_type="1"  category="16" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Goalkeeping" />
    </widget>

 

Edited by QP
Link to post
Share on other sites

7 hours ago, QP said:

I can direct you to my thread about this but besides these panels/widgets you can't interact, edit or manipulate the values of polygons or scatter plots that they gather from game.

Here is the every polygon about teams; If you want to use polygons for players you have to change data_type="1" to data_type="2"

  Reveal hidden contents

    <widget class="data_analyst_visualisation_widget" id="poly"  visualisation_type="3" data_type="1"  category="0" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon General Performance" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly1"  visualisation_type="3" data_type="1"  category="1" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Team Attacking" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly2"  visualisation_type="3" data_type="1"  category="2" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Team Defending" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly3"  visualisation_type="3" data_type="1"  category="3" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Defending" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly4"  visualisation_type="3" data_type="1"  category="4" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon DM" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly5"  visualisation_type="3" data_type="1"  category="5" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Wide Play" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly6"  visualisation_type="3" data_type="1"  category="6" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Pressing" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly7"  visualisation_type="3" data_type="1"  category="7" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Tackling" />
    </widget>    
    
    <widget class="data_analyst_visualisation_widget" id="poly8"  visualisation_type="3" data_type="1"  category="8" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Midfield" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly9"  visualisation_type="3" data_type="1"  category="9" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Creativity" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly10"  visualisation_type="3" data_type="1"  category="10" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Heading" />
    </widget>    
    
    <widget class="data_analyst_visualisation_widget" id="poly11"  visualisation_type="3" data_type="1"  category="11" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Conversion" />
    </widget>
        
    <widget class="data_analyst_visualisation_widget" id="poly12"  visualisation_type="3" data_type="1"  category="12" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Wider Play" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly13"  visualisation_type="3" data_type="1"  category="13" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Attacking" />
    </widget>
    
    <widget class="data_analyst_visualisation_widget" id="poly14"  visualisation_type="3" data_type="1"  category="14" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Movement" />
    </widget>
        
    <widget class="data_analyst_visualisation_widget" id="poly15"  visualisation_type="3" data_type="1"  category="15" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Shooting" />
    </widget>

    <widget class="data_analyst_visualisation_widget" id="poly16"  visualisation_type="3" data_type="1"  category="16" file="widgets/data analyst visualisation mini">
    <record id="object_property" get_property="objt" set_property="objt" />
    <translation id="title" type="use" value="Polygon Goalkeeping" />
    </widget>

 

Hm I just thought about "revealing" the Leagues' averages FM uses to create these graphical representations to make players from different Leagues even more comparable by their stats. It would be nice to "evaluate" them in relation to my Leagues' average stats while these octagons are only related to the League the player is playing in. Maybe I'll have to try whether I can reproduce the visualisation in Excel by extracting every League players' stats.  

Link to post
Share on other sites

13 hours ago, sebastian_starttrbts said:

Hm I just thought about "revealing" the Leagues' averages FM uses to create these graphical representations to make players from different Leagues even more comparable by their stats. It would be nice to "evaluate" them in relation to my Leagues' average stats while these octagons are only related to the League the player is playing in. Maybe I'll have to try whether I can reproduce the visualisation in Excel by extracting every League players' stats.  

Unfortunately there is no way that can happen in game even with custom coding. It would be a great addition with new metrics to compare players, though maybe you can try these python scripts

 

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...