There is a counter in sys.dm_os_performance_counters for pagesplits/sec and as far as I understand, when querying sys.dm_os_performance_counters, any per/sec counter is actually a cumulative amount since SQL was started.
select * from sys.dm_os_performance_counters
where counter_name = 'Page Splits/sec'