-
Recent Posts
- How do I map a differential/transaction log backup to its full backup without using MSDB?
- Change Data Capture gets disabled when you break mirroring and bring the database online
- Change Data Capture gets disabled when you break mirroring and bring the database online
- Do NOT delete files from the Windows Installer folder
- How to monitor deadlock using extended events in SQL Server 2008 and later
-
Recent Comments
- Dave on How to Point a Domain to an Amazon EC2 Virtual Server
- David Ziffer on Programming Language | .NET Multiple Inheritance Issue
- Ashok on SAP HR Certifications Sample Questions Set 4
- Brad on JetBrains Rolls Out Competitor For Objective C Development
- Danny on Getting Started (for Free!) with Amazon Elastic Cloud Computing (EC2)
Category Archives: Python
Connecting an Access Database to Python
A quick guide to using the Access database with your python scraps. The python language allows far more sophisticated data manipulation then VBA, but does not offer a built in Database. By combing Access and python enables you to quickly produce powerful data manipulation tools.
Continue Reading: Connecting an Access Database to Python →
Logistic Regression With L2 Regularization in Python
Suppose you have data describing a bunch of buildings and earthquakes (E.g., year the building was constructed, type of material used, the strength of earthquake, etc), and you know whether each building collapsed or not in each past earthquake. Using this data, you’d like to make predictions about whether a given building is going to collapse in a hypothetical future earthquake — you can see how this would be useful to say, insurance companies.
Continue Reading: Logistic Regression With L2 Regularization in Python →