Author: Rahul Khowal

Use Plotly Library for Visualization

Reading Time: 4 minutes Plotly is a very important and beautiful Library of data science. It is an open-source library. It also supports both framework python and Django It has so many types of graphs like scatter, bar, pie bubble, dot treemap, etc. What is Plotly ? Plotly library which is an open-source and without charge kind of library. The utilize of Plotly for statistical analysis of data enables Continue Reading

It’s all about the Sets and Maps in Scala

Reading Time: 5 minutes INTRODUCTION Data Structure can be defined as the group of data elements that provides an efficient way of storing and organizing data in the computer so that it can be used efficiently. Some examples of Data Structures are arrays, Linked List, Stack, Queue, etc. The sets and maps are the most common topic in collections where can use so many places.scala’s collection framework provides two important interfaces: Continue Reading

“Brief Description On Reactive System/Manifesto”

Reading Time: 2 minutes What is Reactive System ? A reactive system is an architecture that allows multiple individual applications to be merged into a single unit. Responding to their surroundings, being aware of each other. The first formalization of this term passed with the creation of the “Reactive Manifesto” in 2013. By Jonas bungle WHO, By transcending with many of the brightest minds within the distributed systems industry. Continue Reading

Learn How To Start OOPS IN SCALA

Reading Time: 6 minutes INTRODUCTION Scala is a functional-object-oriented programming hybrid that seamlessly integrates the features of object-oriented and functional languages. It has the capability to interoperate with existing Java code and libraries. The main aim of OOP is to bind together the data and the functions that operate on them so that no other part of the code can access this data except that function. Why object-oriented? Scala Continue Reading

Introduction of Inheritance and its types in Scala

Reading Time: 5 minutes One of the important topics of Object-Oriented Programming is Inheritance. Inheritance allows us to define a class in terms of another class, which allows us in the reusability of the code. Here I’ll be giving you an introduction to inheritance in Scala. What is Inheritance in Scala ? It is the instrument in Scala by which one class is permitted to acquire the features(fields and Continue Reading