Publications by tomaztsql
Little useless-useful R functions – Using xspline to create wacky signatures
Nothing short of wacky usage of plot() function with xspline to interpolate the points, but still a “parameter” short of Bezier’s curve. Given two random vectors, you can generate a plot that, xspline will smooth out the plot and give it a “signaturey” look. The function itself is straightforward: inscrp <- function(rep){ x <- ...
1122 sym R (290 sym/2 pcs) 10 img
Tips for organising your R code
Keeping your R code organised is not as straightforward as one might think. Just think about the libraries, variables, functions, and many more. All these objects can be defined and later rewritten, some might get obsolete during the process. This process is proven to be even more crucial when you are part of a larger group of engineers, and scie...
8446 sym R (2095 sym/4 pcs) 2 img
Advent of 2022, Day 3 – Understanding Azure Machine Learning Studio
In the series of Azure Machine Learning posts: Dec 01: What is Azure Machine Learning? Dec 02: Creating Azure Machine Learning Workspace After creating the Azure Machine Learning workspace, you will be able not only to start the Studio but access all the necessary settings and information. Outlook of Azure Machine Learning workspace In this...
7512 sym 18 img
Advent of 2022, Day 1 – What is Azure Machine Learning?
Azure Machine Learning (or Azure Machine Learning Service and abbreviation AML) is Azure’s cloud service for creating, managing and productionalising machine learning projects. It is a collaborative tool for Data Scientists, Machine Learning Engineers, and data engineers, covering their daily and operational tasks. From creating and training to...
3623 sym 6 img
Advent of 2022, Day 13 – Automated ML
In the series of Azure Machine Learning posts: Dec 01: What is Azure Machine Learning? Dec 02: Creating Azure Machine Learning Workspace Dec 03: Understanding Azure Machine Learning Studio Dec 04: Getting data to Azure Machine Learning workspace Dec 05: Creating compute and cluster instances in Azure Machine Learning Dec 06: Environments...
4814 sym 16 img
Advent of 2022, Day 23 – Working with R
In the series of Azure Machine Learning posts: Dec 01: What is Azure Machine Learning? Dec 02: Creating Azure Machine Learning Workspace Dec 03: Understanding Azure Machine Learning Studio Dec 04: Getting data to Azure Machine Learning workspace Dec 05: Creating compute and cluster instances in Azure Machine Learning Dec 06: Environments...
3007 sym 10 img
Performance comparison of converting list to data.frame with R language
When you are working with large datasets performance comes to everyone’s mind. Especially when converting datasets from one data type to another. And choosing the right method can make a huge difference. So in this case, I will be creating a dummy list, and I will convert the values in the list into data.frame. Simple function to create a large...
2364 sym R (1676 sym/4 pcs) 6 img
Little useless-useful R functions – Mandelbrot set
The Mandelbrot set is a set of complex numbers c for which the function does not diverge to infinity when iterate from , and therefore remains bounded in absolute value. For little stretching, we can create a Mandlebrot set and draw it with image function. MandelBrotImage <- function(){ cols <- colorRampPalette(c("white","black","w...
875 sym R (680 sym/1 pcs) 6 img
Retrieving user access list to all reports in your PowerBI tenant using Powershell
From previous blogpost(s): Deleting Power BI datasets using Powershell Longterm-storage of Power BI activity logs and statistics using Powershell Retrieving list of users for all workspaces in your PowerBI tenant using Powershell Ever wanted to get the list of all users and their access to reports? The snippet below will return you just that. ...
1353 sym R (1852 sym/1 pcs)
Little useless-useful R functions – Reverse integer
Reverse integer is another interview question, that allegedly could be asked by the interviewer. Original question or problem is posted at the Leetcode. The problem is described as: Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-2^31, 2^31 – 1...
1539 sym R (970 sym/4 pcs)