The most advanced ML Observability product in the market
Building an ML platform is nothing like putting together Ikea furniture; obviously, Ikea is way more difficult. However, they both, similarly, include many different parts that help create value when put together. As every organization sets out on a unique path to building its own machine learning platform, taking on the project of building a […]
Start integrating our products and tools.
We’re excited 😁 to share that Forbes has named Aporia a Next Billion-Dollar Company. This recognition comes on the heels of our recent $25 million Series A funding and is a huge testament that Aporia’s mission and the need for trust in AI are more relevant than ever. We are very proud to be listed […]
A DataFrame might contain hundreds of even thousands of columns. It is not possible to visually check if a column exists in such DataFrames.
In this short how-to article, we will learn a practical way of performing this operation in Pandas and PySpark DataFrames.
We can use the in keyword for this task.
"f128" in df.columns True
It returns True if the given column exists in the DataFrame.
The exact same operation works in PySpark as well.