Skip to main content

Posts

Top posts on this blog in March 2024

The Top 10 viewed post on this blog in March 2024. Covering areas such as small robots, augmented reality, Scratch programming, robots. Microbit Remote Control CBiS Car I wanted to contol the CBiS micro:Bit Car via gestures whilst holding another micro:Bit (see Figure 1) I went for: - Button A in combinat... Escape the Maze with a VR robot - Vex VR You don't need to buy a robot to get programming a robot, now there are a range of free and relatively simple to start with robot simula... Programming Anki's Vector robot With the sad news that Anki is shutting down ( https://www.vox.com/2019/4/29/18522966/anki-robot-cozmo-staff-layoffs-robotics-toys-boris-sof... Easy, Free and Quick Augmented Reality (AR) - AR.js Studio - Marker based For a few years, I have been a fan of Aframe and AR.js - these are fantastic tools for creating web-based Virtual and Augmented Reality.  No... Speech Recognition in Scratch 3 - turning Hello into Bonjour! The Raspberry Pi Foundation recently re...

ChatGPT, Data Scientist - fitting it a bit

This is a second post about using ChatGPT to do some data analysis. In the first looked at using it to some basic statistics  https://robotsandphysicalcomputing.blogspot.com/2023/07/chatgpt-data-scientist.html This time, the CSV file looked at some publication data - The year of publication; the number of papers published in that year; and the number of citaations papers in that year got over time. The data was collected from Google Scholar for one person. The prompt used (again using Code Interpreter plug-in The transcript is shown below. Analyse this data as a Data Analyst including linear and polynominal fitring papervcitation.csv Interestingly it spotted some errors in its own code and corrected them.  I apologize for the inconvenience, there seems to have been a technical issue with the code execution. Let's try to load the dataset again. Finished working Hide work python Copy code # Load the new dataset data_new = pd.read_csv( '/mnt/data/papervcitation.csv' ) # Disp...