GINI-Index

Aus Wiki1

(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Zeile 6: Zeile 6:
<jsxgraph box="jxgbox"  width="700" height="500">
<jsxgraph box="jxgbox"  width="700" height="500">
//Eingabe
//Eingabe
-
 
-
var p3xy=[0.0,0.0];
 
-
var p4xy=[Math.log(50),50];
 
-
var p5xy=[100,100];
 
brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-10, 110, 110, -10], grid: true, axis:true});
brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox:[-10, 110, 110, -10], grid: true, axis:true});
//Punkte
//Punkte
-
var p3 = brd.create('point',p3xy,{name:'C', style:5});
+
var p = [];
-
var p4 = brd.create('point',[1,Math.exp(1)],{name:'D', style:5});
+
p[0] = brd.create('point', [0,0], {size: 4, face: 'o'});
-
var p5 = brd.create('point',p5xy,{name:'E', style:5});
+
p[1] = brd.create('point', [50,10], {size: 4, face: 'o'});
 +
p[2] = brd.create('point', [100,100], {size: 4, face: 'o'});
 +
 
 +
var c = brd.create('spline', p, {strokeWidth:3});
-
var graph = brd.create('functiongraph', [
+
var g = brd.create('glider', [1.5,0,c], {name:'',style:8});
-
        function(x) {
+
var t = brd.create('tangent', [g], {dash:2,strokeColor:'#aa0000'});
-
            var a = Math.log(p4.Y()) / p4.X();
+
   
-
            return Math.exp(a * x)-1;
+
}
-
        }]);   
+
      
      
des1 = brd.createElement('text',[-0.1,1,function(){ return "x = -10 bis 100%";}],{strokeColor:'black',fontSize:'14px'});  
des1 = brd.createElement('text',[-0.1,1,function(){ return "x = -10 bis 100%";}],{strokeColor:'black',fontSize:'14px'});  

Version vom 11:12, 24. Mär. 2023

Dieser Artikel befindet sich in der Entstehungsphase. Er ist unvollständig und noch nicht korrekt ausformuliert.

Der GINI-Index ist ein Maß für die ungleiche Verteilung von Vermögen in einer Gesellschaft.


Persönliche Werkzeuge