La función d3.sum() en D3.js se usa para devolver la suma de los elementos de la array dada. Si la array está vacía, devuelve 0.
Sintaxis:
d3.sum(Array)
Parámetros: Esta función acepta un Array de parámetros que es un arreglo de elementos cuya suma se va a calcular.
Valor devuelto: Devuelve la suma del elemento de la array dada.
Los siguientes programas ilustran la función d3.sum() en D3.js.
Ejemplo 1:
<html> <head> <title> Getting sum of the elements of given array </title> </head> <body> <script src='https://d3js.org/d3.v4.min.js'> </script> <script> // initialising the array of elements var Array1 = [10, 20, 30, 40, 50, 60]; var Array2 = [1, 2]; var Array3 = [0, 1.5, 6.8]; var Array4 = [.8, .08, .008]; // Calling to d3.sum() function A = d3.sum(Array1); B = d3.sum(Array2); C = d3.sum(Array3); D = d3.sum(Array4); // Getting sum of the given array's element document.write(A + "<br>"); document.write(B + "<br>"); document.write(C + "<br>"); document.write(D + "<br>"); </script> </body> </html>
Producción:
210 3 8.3 0.888
Ejemplo 2:
<html> <head> <title> Getting sum of the elements of given array </title> </head> <body> <script src='https://d3js.org/d3.v4.min.js'> </script> <script> // initialising the array of elements var Array1 = []; var Array2 = ["a", "b", "c"]; var Array3 = [1, "B", "C"]; var Array4 = ["Geek", "Geeks", 2, 3, "GeeksforGeeks"]; // Calling to d3.sum() function A = d3.sum(Array1); B = d3.sum(Array2); C = d3.sum(Array3); D = d3.sum(Array4); // Getting sum of the given array's element document.write(A + "<br>"); document.write(B + "<br>"); document.write(C + "<br>"); document.write(D + "<br>"); </script> </body> </html>
Producción:
0 0 1 5
Nota: En la salida anterior, si el parámetro está vacío o es una string, devuelve 0 y si el parámetro es una string que incluye algún valor entero, se devuelve la suma del valor del entero.
Referencia: https://devdocs.io/d3~4/d3-array#sum
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA