Handling Google maps location data
Getting traffic, vehicle used, location and journey time from Google Maps. Integrating these factors for in-time problem.
Class size paradox
Explanation of class size paradox using Amrita University placement data. Contains reusable R code for web scraping.
Donut chart using pure CSS and HTML
Last week time spent ■ Cleaning data ■ Formulating hypothesis ■ EDA ■ Actual analytics One of the ways of plotting numerical proportions in statistics is by using the donut chart. In the above example, the time I spent working on a problem in the last week is shown. Although I recommend using D3, Plotly…
Exporting dimensions to Excel from NX
This blog is the third part of a 3 part series on NX journalling The aim of this blog post is to open an excel window from NX and exporting properties from workPart.Dimensions to excel. Continuing from the previous post, we could write the following program The following code can also be found at https://github.com/HarshaAsh/NXBasics Option Strict Off…
Getting the dimensions of the selected Part
This blog is the second part of a 3 part series on NX journalling The aim of this blog post is to display dimensions of a part Part dimensions will be stored in workPart.Dimensions and can be displayed on a listing window. Continuing from the previous post, we could write the following program Imports System Imports…
Selecting a part in NX Journaling
This blog post is the first part of 3 part series on NX Journaling The aim of this blog post is to select a part. Before writing codes for journals, it’s easier to create a journal and then look at its code. In NX 10.0, start recording a journal from tools -> journal Do…
Extracting data from mechanical models
Recently I came across problems trying to automate simple engineering routines, and the first step in a large number of these problems is extracting data from already existing models for further analysis. The list of posts below is about a problem where data from CAD/CAM models should be extracted to excel for further processing. I…
Lets start learning ReactJs
Hey all, interested in learning ReactJs? Lets start learning it together then. PS: This is not a tutorial, for relevant tutorials please visit https://www.tutorialspoint.com/reactjs/reactjs_overview.htm https://reactjs.org/tutorial/tutorial.html I took the boiler plate from https://github.com/facebook/create-react-app and run the following commands npx create-react-app my-app cd my-app npm start