by Diego Calvo | Apr 5, 2018 | Metodologies
Agile Methodologies Features Incremental development, instead of the complete planning and execution of the product. The quality of the result depends on the value of the innate knowledge of the self-organized teams, rather than the quality of the processes used.... by Diego Calvo | Mar 17, 2018 | Machine learning
The hierarchical methods try to create groups of homogeneous elements among themselves and heterogeneous among groups, to achieve it mainly can be done by means of agglomerative or divisive strategy. Agglomerative strategy The strategies are based on a set of... by Diego Calvo | Jan 17, 2018 | Apache Spark, Python-example
Example of pipeline concatenation In this example, you can show an example of how elements are included in a pipe in such a way that finally all converge in the same point, which we call “features” from pyspark.ml import Pipeline from pyspark.ml.feature... by Diego Calvo | Nov 23, 2017 | Apache Spark, Neo4J Data Base, Python-example, R-example, Scala-example
Comparison of programming languages by Diego Calvo | Nov 23, 2017 | Apache Spark, Python-example
Function example in Spark Python Displays an example of a map function with Spark. def my_func(iterator): yield sum(iterator) list = range(1,10) parallel = sc.parallelize(list, 5) parallel.mapPartitions(my_func).collect() [1, 5, 9, 13,...