CoolFace
Datasetpublic

NeuML/neuml-linkedin-202501

NeuML LinkedIn Company Posts This dataset is 12 months of NeuML's LinkedIn Company Posts as of January 2025. It contains the post text along with engagement metrics. It was created as follows: Export the company posts from the analytics page, see this link for instructions. Run the following code to create a dataset import pandas as pd from datasets import load_dataset df = pd.read_excel("export_data.xls", sheet_name=1, header=1) df = df.dropna(axis="columns")… See the full description on the dataset page: https://huggingface.co/datasets/NeuML/neuml-linkedin-202501.

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
1likes82downloads
Dataset Card

NeuML LinkedIn Company Posts

This dataset is 12 months of NeuML's LinkedIn Company Posts as of January 2025. It contains the post text along with engagement metrics.

It was created as follows:

  1. 1.Export the company posts from the analytics page, see this link for instructions.
  1. 1.Run the following code to create a dataset
python
import pandas as pd
from datasets import load_dataset

df = pd.read_excel("export_data.xls", sheet_name=1, header=1)
df = df.dropna(axis="columns")
df.to_csv("data/posts.csv", index=False)

This same process can be run to create your own dataset. It can be loaded locally as follows.

python
ds = load_dataset("data")