Web scraping: implementation using Python

Web scraping is used to collect large information from websites.JIRA CODE – JJ – 134 Web scraping is an automated method used to extract large amounts of data from websites. The data on the websites are unstructured. Web scraping helps collect these unstructured data and store it in a structured form. Steps of Web Scrapping:… Continue reading Web scraping: implementation using Python

Naive Bayes Algorithm in Python

Bayes’ Theorem provides a way that we can calculate the probability of a piece of data belonging to a given class. Bayes’ Theorem is stated as: P(class|data) = (P(data|class) * P(class)) / P(data) Where P(class|data) is the probability of class given the provided data. Naive Bayes is a classification algorithm for binary (two-class) and multiclass… Continue reading Naive Bayes Algorithm in Python

K-Nearest Neighbor Algorithm(K-NN Algorithm) in Python

Implementation code of K-NN Algorithm using Python language JIRA CODE – JJ – 134 This algorithm is used to solve the classification model problems. K-nearest neighbor or K-NN algorithm basically creates an imaginary boundary to classify the data. When new data points come in, the algorithm will try to predict that to the nearest of… Continue reading K-Nearest Neighbor Algorithm(K-NN Algorithm) in Python

Backbone.Collection

Collections are ordered sets of models. You can bind “change” events to be notified when any model in the collection has been modified, listen for “add” and “remove” events, fetch the collection from the server, and use a full suite of Underscore.js methods. Any event that is triggered on a model in a collection will also be triggered on the collection directly, for convenience.… Continue reading Backbone.Collection

Backbone.Router

Web applications often provide linkable, bookmarkable, shareable URLs for important locations in the app. Until recently, hash fragments (#page) were used to provide these permalinks, but with the arrival of the History API, it’s now possible to use standard URLs (/page). Backbone.Router provides methods for routing client-side pages, and connecting them to actions and events. For browsers… Continue reading Backbone.Router

Payroll For NetSuite

Jira Code: GLL-8 Case study for the implementation of a payroll system in NetSuite according to the AU, UK, and US requirements. Possibly in a single system. Paycheck Journal feature : Supports countries other than the U.S. for having access  to different  payroll capabilities, including the tracking of payroll data for employees.  Paycheck  Journal  feature… Continue reading Payroll For NetSuite

Serial Number Customization

JIRA TASK:DRF-61 Override the default numbering of invoices based on categories Need to account separate Serial Numbers for the transaction record Invoice Invoice has three specific Prefixes based on Export, Local,and CounterSale. For each prefix need to account separate continuous Numbering System We have created a custom list that lists the 3 categories :“Export”,”Local”, “Counter… Continue reading Serial Number Customization

Print Advanced PDF In Different languages

Custom forms that use advanced templates are printed in the locale of the current user, set in the Language field at Home > Set Preferences. Based on the locale, the font family is set. You also can print these forms in the locale of the customer associated with a transaction, for transaction types that support this… Continue reading Print Advanced PDF In Different languages